样式在指定范围内使用 CSS 设置值元素


要为值在指定范围内的<input> 元素设置样式,请使用 CSS :in-range 选择器。您可以尝试运行以下代码来实现 :in-range 选择器

示例

即时演示

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

更新于:2020 年 6 月 21 日

103 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告