Google Chrome中的输入类型搜索border-radius问题

时间:2011-11-01 07:19:50

标签: css css3 google-chrome cross-browser

我有一个<input type="search"/>元素(没有其他HTML)。

这是CSS:

input[type=search] {
    border: 1px solid #000;
    padding: 4px 12px;
    border-radius: 8px;
}

在Firefox 7中,它看起来很棒:

Rounded corners on input element in Firefox 7

但是,在Chrome 15中,圆角被切掉了:

enter image description here

View jsFiddle

我能解决这个问题吗?

2 个答案:

答案 0 :(得分:18)

您只需添加-webkit-appearance: none即可修复它。

答案 1 :(得分:4)

尝试使用-webkit-appearance: textfield;