在焦点上输入textarea删除橙色边框?

时间:2013-04-01 15:39:27

标签: html css input

我已经尝试了一切我能想到的删除它。如何在焦点边框上删除这个疯狂的Firefox?单击输入区域时,它将以橙色边框突出显示。

这是我的CSS

.noFocus:focus {
outline: none !important;
border: none !important;
-moz-appearance:none;
}

textarea:focus, input:focus{
    outline: none;
    border: none !important;
-moz-appearance:none;
}

3 个答案:

答案 0 :(得分:1)

!important;之间留一个空格,如下所示:

outline: none !important ;

这可能是原因。

答案 1 :(得分:0)

这适用于您所遇到的问题 -

input, select, textarea, button {
    -moz-box-shadow:none;
}

答案 2 :(得分:0)

试试这个希望是有效的:

input:invalid {outline: none;
    border: none !important;
-moz-appearance:none;}