我發現了這個很棒的搜索框的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/
非常感謝玩具!訣竅! – nellygrl