如何完全覆盖 Chromium 禁用的输入字段颜色?

发布于 2024-10-29 10:15:10 字数 411 浏览 3 评论 0原文

示例: http://jsfiddle.net/wCFBw/25/

input {
    color: black;
}
<input type="text" value="This is black" />
<input type="text" disabled="disabled" value="Why this is not black?" />

Example: http://jsfiddle.net/wCFBw/25/

input {
    color: black;
}
<input type="text" value="This is black" />
<input type="text" disabled="disabled" value="Why this is not black?" />

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

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

发布评论

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

评论(1

猫烠⑼条掵仅有一顆心 2024-11-05 10:15:10

我不知道为什么会发生这种情况,但我怀疑 WebKit 正在努力让用户知道 被禁用。

您还可以使用 -webkit-text-fill-color 属性

input.black {
    color: black;
    -webkit-text-fill-color: black
}

请确保将颜色设置为明显的颜色 被禁用。

这是使用新属性进行修改的演示: http://jsfiddle.net/thirtydot/wCFBw/38/

I don't know why that happens, but I suspect WebKit is trying to be smart with respect to letting the user know the <input> is disabled.

You can workaround this by also using the -webkit-text-fill-color property:

input.black {
    color: black;
    -webkit-text-fill-color: black
}

Please, make sure you're setting the colour to something that makes it apparent that the <input> is disabled.

Here's your demo, modified with the new property: http://jsfiddle.net/thirtydot/wCFBw/38/

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