Adding an image to submit button using CSS

前端 未结 9 2218
面向向阳花
面向向阳花 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:24

    You can use CSS text-indent to move the text away:

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

    https://developer.mozilla.org/en-US/docs/Web/CSS/text-indent

提交回复
热议问题