how to remove outline of html button

后端 未结 7 1619
执念已碎
执念已碎 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:13

    Try this.

    .resetButton, .resetButton:visited
    {
        margin: 0px;
        background:url(../images/button/Reset2.png) no-repeat;
        display: block;
    
        width: 90px;
        height: 32px;
        cursor: pointer;
        border: none;
        outline: none;
    }
    

提交回复
热议问题