Add padding to HTML text input field

前端 未结 6 876
悲哀的现实
悲哀的现实 2021-02-01 12:18

I want to add some space to the right of an so that there\'s some empty space on the right of the field.

So, instead of

6条回答
  •  终归单人心
    2021-02-01 12:49

    padding-right works for me in Firefox/Chrome on Windows but not in IE. Welcome to the wonderful world of IE standards non-compliance.

    See: http://jsfiddle.net/SfPju/466/

    HTML

    
    

    CSS

    .foo
    {
        padding-right: 20px;
    }
    

提交回复
热议问题