删除FFIE和Webkit中按钮上的轮廓线和虚线
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除FFIE和Webkit中按钮上的轮廓线和虚线相关的知识,希望对你有一定的参考价值。
/* * Andrew Wayne 2010 */ /* removing dotted line on buttons and clickable input elements for Firefox */ input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, button::-moz-focus-inner { border : 0; } /* Remove outline on buttons and clickable input elements for WebKit Browsers & IE8 */ input[type="submit"]:focus, input[type="button"]:focus, input[type="text"]:focus, button { outline : none; }
以上是关于删除FFIE和Webkit中按钮上的轮廓线和虚线的主要内容,如果未能解决你的问题,请参考以下文章