CSS中的角色:in-range选择器


使用 CSS :in-range 选择器来设置 <input> 元素的样式,其中元素值位于指定范围内。你可以尝试运行以下代码来实现 :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>

最后更新日期:30-6-2020

98 次查看

开启你的 职业 生涯

完成课程,获得认证

开始学习
广告