html button去掉点击时的边框
<button class="querybtn">确定</button>
.querybtn{
width: 100%;
height: 40px;
-webkit-border-radius:6px;/*适配以webkit为核心的浏览器(chrome、safari等)*/
-moz-border-radius:6px;/*适配firefox浏览器*/
-ms-border-radius:6px;/*适配IE浏览器*/
-o-border-radius:6px;/*适配opera浏览器*/
border-radius:6px;/*适配所有浏览器*/
border: 1px solid #C6C4C4;
outline: none;
}
button :focus{outline:0;}
还没有评论,来说两句吧...