3

我为搜索框找到了这个很棒的 CSS,但是当我点击搜索框时,它周围会出现一个橙色边框(这并不吸引人,哈哈)。如果有人可以建议我如何摆脱边界,将不胜感激。CSS如下:

#search input[type="text"] {
    background: url(search-white.png) no-repeat 10px 6px #fcfcfc;
    border: 1px solid #d1d1d1;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #bebebe;
    width: 150px;
    padding: 6px 15px 6px 35px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    }

#search input[type="text"]:focus {
    width: 200px;
    }

如果有帮助,我已经为您创建了这个 JSFiddle:http: //jsfiddle.net/nkZ4p/

4

5 回答 5

8

添加:outline : none_:focus

#search input[type="text"]:focus {
    width: 200px;
    outline : none;
}
于 2013-06-03T13:56:36.933 回答
0

我有一个蓝色边框,我想这取决于您使用的浏览器。您可以通过添加以下 css 来删除它:outline:none;

于 2013-06-03T13:57:00.867 回答
0

它是浏览器的属性。我们需要纠正这一点。在 chrome 中它显示橙色,在 Firefox 中它显示虚线。

您可以替换此代码以克服该功能。

#search input[type="text"]:focus {
   width: 200px;
   outline: none;
}
于 2013-06-03T14:06:02.450 回答
0

看到这个问题- 它实际上不是borderoutline。使用以下方法删除它:

#search input[type="text"]:focus {
    outline: none;
}
于 2013-06-03T13:56:28.737 回答
0

使用:focus伪类并设置outline为无。

http://www.w3schools.com/css/tryit.asp?filename=trycss_link_focus

于 2013-06-03T13:58:47.010 回答