remove value attribute of input element using CSS only

前端 未结 4 1257
不思量自难忘°
不思量自难忘° 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条回答
  •  花落未央
    2021-01-13 05:25

    Using font-size: 0:

    input[type="submit"] {
        font-size:0;
        width:100px;
        height:20px;
        background:red; /** or `background: url('some.jpg') no-repeat 0 0;` */
        border:0;
        cursor:pointer;
    }
    

    Demo

提交回复
热议问题