html button去掉点击时的边框

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xiejunna/article/details/85633314
<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;} 

猜你喜欢

转载自blog.csdn.net/xiejunna/article/details/85633314
今日推荐