CSS的作用:范围内选择器

使用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>

以上是 CSS的作用:范围内选择器 的全部内容, 来源链接: utcz.com/z/352588.html

回到顶部