2

我正在设计一个网站,我希望搜索栏没有圆角——只有典型的直角。无论出于何种原因,我都无法使其在 google chrome 中运行,但是当我在 Firefox 中打开我的网站时,它确实有直角。有谁知道我需要做什么才能使搜索栏以没有圆角的 chrome 显示?

这是我的CSS:

#searchbar {
float:right;
padding:10px 20px;
clear:right;
margin-right:35px;
margin-top:-7px;
}

#searchbar input {
float:right;
border:1px solid #000;
border-radius:none;
}

#searchbar p {
margin:5px 10px 0 0;
float:right;
text-transform:capitalize;
font-variant:small-caps;
font-size:1em;
}
4

1 回答 1

2

试着把它放在你的 CSS 中。这会将搜索的默认显示更改为与具有直角的文本字段相同。http://jsfiddle.net/8PdDt/

input[type=search] {
    -webkit-appearance: textfield;
}​​​
于 2012-10-05T00:35:34.583 回答