0

当我们点击文本框时,Chrome 中会出现一个边框。

4

3 回答 3

3

$outline:none;以这种方式使用:

textarea:focus, input:focus{
    outline: none;
}

这样,它仅在使用时才适用。

于 2012-08-09T11:45:30.190 回答
1

CSS:

textbox:focus {
    outline: none;
}

更新

texbox只是为了说明,在你的代码中你应该使用基于你的 html 之类的元素input, button, textarea

于 2012-08-09T10:27:05.173 回答
0

像这样使用outline: none;

input, textarea {
   outline: none;
}
于 2012-08-09T10:28:45.663 回答