Putting Images Inside a BUTTON Element (HTML & CSS)

后端 未结 5 1666
闹比i
闹比i 2020-12-28 21:53

I have a simple button (as shown below) on which I need to display two pictures, one on either side of the button text. Im battling to create the CSS that will work in both

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-28 22:24

    try resetting the button css.

    button{
    border:none;
    background:none;
    padding:0;
    margin:0;
    }
    

    And add a space inside an empty DIV see if it works.

    
    

提交回复
热议问题