Adding an image to submit button using CSS

前端 未结 9 2212
面向向阳花
面向向阳花 2020-12-10 05:34

I\'m attempting to use CSS in order to make a sumbit button containing an image. Here\'s the code:

HTML



        
9条回答
  •  萌比男神i
    2020-12-10 06:18

    The gray box is caused by a default border being added to the submit buttons. Whereas the submit text is the default value for the button.

    HTML:

    
    

    CSS:

    input#search    {
    background:url(../search-icon.png);
    background-repeat: no-repeat;
    width:40px;
    height:40px;
    border: 0;
    }
    

提交回复
热议问题