删除FFIE和Webkit中按钮上的轮廓线和虚线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除FFIE和Webkit中按钮上的轮廓线和虚线相关的知识,希望对你有一定的参考价值。

  1. /*
  2.  * Andrew Wayne 2010
  3. */
  4.  
  5. /* removing dotted line on buttons and clickable input elements for Firefox */
  6. input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, button::-moz-focus-inner
  7. { border : 0; }
  8.  
  9. /* Remove outline on buttons and clickable input elements for WebKit Browsers & IE8 */
  10. input[type="submit"]:focus, input[type="button"]:focus, input[type="text"]:focus, button
  11. { outline : none; }

以上是关于删除FFIE和Webkit中按钮上的轮廓线和虚线的主要内容,如果未能解决你的问题,请参考以下文章

实习报告图中虚线和实线的区别?

如何在不损害可访问性的情况下删除 Firefox 链接中的虚线轮廓?

如何删除焦点按钮文本周围的虚线白色边框

从 extjs 按钮中删除轮廓

从 Firefox 中的范围输入元素中删除虚线轮廓

CSS 删除Firefox中链接的虚线轮廓