HTML: How to make a submit button with text + image in it?

后端 未结 10 787
抹茶落季
抹茶落季 2020-12-13 07:09

I would like to have a submit button which contains text and an image. Is this possible?

I can get the exact look I want with code that looks like:

10条回答
  •  抹茶落季
    2020-12-13 07:12

    Let's say your image is a 16x16 .png icon called icon.png Use the power of CSS!

    CSS:

    input#image-button{
        background: #ccc url('icon.png') no-repeat top left;
        padding-left: 16px;
        height: 16px;
    }
    

    HTML:

    
    

    This will put the image to the left of the text.

提交回复
热议问题