Image button in html

前端 未结 3 1531
借酒劲吻你
借酒劲吻你 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 12:57

    Yes there is, by applying a background-image to the button like so:

    HTML

    
    

    CSS

    button{
      background-image: url("YourImageHere");
      color: #FFF; //random values
      height: 50px; //random values
      width: 100px; //random values   
    }
    

    FIDDLE

提交回复
热议问题