how to remove outline of html button

后端 未结 7 1621
执念已碎
执念已碎 2020-12-19 06:53

I have button on my html page, when i click on that button it show me outer line to button shown as below image.

相关标签:
7条回答
  • 2020-12-19 07:31

    Just add display: block;

    .resetButton
    {
        margin: 0px;
        background:url(../images/button/Reset2.png) no-repeat;
        display: block;
        border: none; 
        width: 90px;
        height: 32px;
        cursor: pointer;
    }
    
    0 讨论(0)
提交回复
热议问题