CSS 的作用:out-of-range 选择器


使用 CSS :out-of-range 选择器来设置具有超出指定范围的值的 <input> 元素的样式。

示例

你可以尝试运行以下代码来实现 :out-of-range 选择器

在线试用

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:out-of-range {
            border: 3px dashed orange;
            background: yellow;
         }
      </style>
   </head>
   <body>
      <input type = "number" min = "5" max = "10" value = "15">
      <p>The style only works for the value entered out of range</p>
   </body>
</html>

更新于: 2020 年 7 月 1 日

49 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告