html button去掉点击时的边框

浅浅的花香味﹌ 2022-03-31 08:25 722阅读 0赞
  1. <button class="querybtn">确定</button>
  2. .querybtn{
  3. width: 100%;
  4. height: 40px;
  5. -webkit-border-radius:6px;/*适配以webkit为核心的浏览器(chrome、safari等)*/
  6. -moz-border-radius:6px;/*适配firefox浏览器*/
  7. -ms-border-radius:6px;/*适配IE浏览器*/
  8. -o-border-radius:6px;/*适配opera浏览器*/
  9. border-radius:6px;/*适配所有浏览器*/
  10. border: 1px solid #C6C4C4;
  11. outline: none;
  12. }
  13. button :focus{outline:0;}

发表评论

表情:
评论列表 (有 0 条评论,722人围观)

还没有评论,来说两句吧...

相关阅读