我想为我的网络应用程序创建一个搜索功能。
这是 FF 和 IE 上的外观,没有奇怪的边框是可以的
火狐
IE
这是 Chrome 和 Safari 上的外观,输入元素周围有奇怪的边框
铬合金
苹果浏览器
这是我的 html & css 代码
<input type="search" id="generic_search" onkeypress="return runScript(event)" />
<input type="button" id="generic_search_button" />
已border:0
应用于所有元素
#generic_search
{
font-size: 14px;
width: 250px;
height: 25px;
float: left;
padding-left: 5px;
padding-right: 5px;
margin-top: 7px;
}
#generic_search_button
{
float: left;
width: 25px;
height: 25px;
margin-top: 7px;
cursor: pointer;
background-color: White;
background-image: url(/Images/search.png);
background-repeat: no-repeat;
background-position: center center;
}
怎么去掉那个边框?