Remove the complete styling of an HTML button/submit

后端 未结 7 468
再見小時候
再見小時候 2020-12-13 05:14

Is there a way of completely removing the styling of a button in Internet Explorer? I use a css sprite for my button, and everything looks ok.

But when I click the

相关标签:
7条回答
  • 2020-12-13 06:11

    Add simple style to your button

    .btn {
        background: none;
        color: inherit;
        border: none;
        padding: 0;
        font: inherit;
        cursor: pointer;
        outline: inherit;
    }
    
    0 讨论(0)
提交回复
热议问题