Add padding to HTML text input field

前端 未结 6 863
悲哀的现实
悲哀的现实 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:32

    HTML

    For Other Browsers:

    .FieldElement input {
    width: 413px;
    border:1px solid #ccc;
    padding: 0 2.5em 0 0.5em;
    }
    
    .searchIcon
    {
     background: url(searchicon-image-path) no-repeat;
     width: 17px;
     height: 17px;
     text-indent: -999em;
     display: inline-block;
     left: 432px;
     top: 9px;
    }
    

    For IE:

    .FieldElement input {
    width: 380px;
    border:0;
    }
    
    .FieldElement {
     border:1px solid #ccc;
     width: 455px;     
     }
    
    .searchIcon
    {
     background: url(searchicon-image-path) no-repeat;
     width: 17px;
     height: 17px;
     text-indent: -999em;
     display: inline-block;
     left: 432px;
     top: 9px;
    }
    

提交回复
热议问题