CSS - 伪类 :in-range



CSS 伪类选择器:in-range 代表一个其值在minmax 属性限定的范围内的<input> 元素。

:in-range 选择器很有用,因为它可以向用户直观地指示字段的当前值是否在允许的值范围内。

伪类:in-range 只能应用于可以具有或取值范围限制的元素。如果没有此类限制,则该元素既不属于in-range 也不属于out-of-range

语法

:in-range {
   /* ... */ 
}

CSS :in-range 示例

这是一个:in-range 伪类的示例

<html>
<head>
<style>
   input:in-range { 
      background-color: beige; 
      padding: 5px;
      border: 2px solid black;
   } 

   input[type="number"]:out-of-range {  
      border: 2px solid red;
      padding: 5px;
   }
   input:out-of-range + label::after {
      content: "Sorry! Enter a value within the specified range.";
      color: red;
   }

   p {
      color: green;
   }
   </style>
   </head>
   <body>
   <h2>:in-range pseudo-class example</h2>
   <p>Enter a number in the range of 1 and 50.</p>
   <p> 
      <input type="number" min="1" max="50" value="1" id="inrange">
      <label for="inrange"></label>
   </p>
</body>
</html>
广告