如果验证失败,则设置 HTML5 输入类型的样式

发布于 2024-11-27 09:02:33 字数 181 浏览 1 评论 0原文

大家好

我的问题很简单:我需要为无法验证的输入(例如电子邮件)设置红色边框(或阴影?)的样式。有什么新的 CSS 技巧可以做到这一点吗?

如果您仍然不明白我在告诉您什么,那么这就是需要更改的颜色: 在此处输入图像描述

Yo everyone

My question is quite simple: I need to style the red border (or shadow?) of the inputs that couldn't be validated (like email). Is there any new CSS trick to do that?

If you still don't understand what I am telling you, then this is the color that needs changing:
enter image description here

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

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

发布评论

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

评论(1

靖瑶 2024-12-04 09:02:33

请参阅 https://developer.mozilla.org/en/CSS/%3Ainvalid Firefox 详细信息,尽管可能没有“-moz”的部分也适用于其他浏览器:

:invalid CSS 伪类自动应用于
内容无法根据输入类型进行验证的元素
环境。这使您可以轻松地让无效字段采用
帮助用户识别和纠正错误的外观。

默认情况下,Gecko 不会将样式应用于 :invalid 伪类。
然而它确实应用了一种样式(使用框阴影的红色“发光”
属性)到 :-moz-ui-invalid 伪类,它适用于
:invalid 的案例子集。

See https://developer.mozilla.org/en/CSS/%3Ainvalid for Firefox details, although presumably the parts without "-moz" apply to other browsers too:

The :invalid CSS pseudo-class is applied automatically to <input>
elements whose contents fail to validate according to the input's type
setting. This allows you to easily have invalid fields adopt an
appearance that helps the user identify and correct errors.

By default, Gecko does not apply a style to the :invalid pseudo-class.
However it does apply a style (a red "glow" using the box-shadow
property) to the :-moz-ui-invalid pseudo-class, which applies in a
subset of cases for :invalid.

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