这是问题,我有一个输入字段,我设置:
outline: none !important;
在 Chrome 中,当我输入一些字母时,它工作正常。但是,当我在 Firefox 中测试它时,会出现紫色焦点边框。
如何禁用它?
这是html文件:
<html>
<head>
<style type="text/css">
.input-large{
position: absolute;
width: 800px;
margin: 0 auto;;
background: transparent;
font-size: 150px;
text-align: left;
border: 0;
letter-spacing: 35px;
outline: none !important;
font-family: Courier New !important;
}
</style>
</head>
<body>
<input class="input-large" type="text" pattern="[0-9]*" maxlength="5" size="5" autofocus>
</body>
</html>