Google Chrome 中的输入类型搜索边框半径问题

发布于 2024-12-13 02:08:10 字数 548 浏览 0 评论 0原文

我有一个 元素(没有其他 HTML)。

CSS 如下:

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

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

Roundedcorns on input element in Firefox 7

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

在此处输入图像描述

查看 jsFiddle

有什么方法可以解决这个问题吗?

I have an <input type="search"/> element (no other HTML).

Here's the CSS:

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

In Firefox 7 it looks great:

Rounded corners on input element in Firefox 7

However, in Chrome 15 the rounded corners are cut off:

enter image description here

View jsFiddle

Any way I can fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

合久必婚 2024-12-20 02:08:10

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

You just need to add -webkit-appearance: none to fix it.

她比我温柔 2024-12-20 02:08:10

尝试使用 -webkit-appearance: textfield;

Try with -webkit-appearance: textfield;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文