Adding an image to submit button using CSS

前端 未结 9 2200
面向向阳花
面向向阳花 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条回答
  •  無奈伤痛
    2020-12-10 06:16

    html: 
    CSS:
    .search-button
    {
        background-image: url("/images/search.png");
        background-repeat: no-repeat;
        min-width: 52px;
        min-height: 20px;
        width:52px;
        height: 20px;
        border:0;
    }
    

提交回复
热议问题