Image button in html

前端 未结 3 1526
借酒劲吻你
借酒劲吻你 2021-01-23 12:31

I\'m trying to get a button that has an image on it. I\'ve seen stuff like the following but they don\'t give you the button press/release effect that a normal button does.

3条回答
  •  我在风中等你
    2021-01-23 13:02

    .yourButton{
        background:url("logg.png") no-repeat;
        border:none;
        cursor:pointer;
        width:40px;
        height:10px;
    }
    

提交回复
热议问题