remove value attribute of input element using CSS only

前端 未结 4 1345
不思量自难忘°
不思量自难忘° 2021-01-13 04:46

I have a \"Submit\" button which I\'m trying to replace with an image


I can\'t modify th

4条回答
  •  旧时难觅i
    2021-01-13 05:17

    input[type="submit"] {
      font-size:0;
      width:120px;
      height:30px;
      background: url('dir/image.png') no-repeat left top;
      border: none;
    }
    

    This will do the trick. Remember your image path is relative to the stylesheet.

提交回复
热议问题