CSS - 伪类选择器 :out-of-range



CSS 伪类选择器:out-of-range 代表一个<input>元素,其值超出由minmax 属性限定的范围。

:out-of-range 选择器非常有用,因为它可以向用户直观地指示字段的当前值是否超出允许的值范围。

伪类:out-of-range 只能应用于可以具有或接受范围限制内的值的元素。如果没有这样的限制,则该元素既不处于in-range 也不是out-of-range 状态。

语法

:out-of-range {
   /* ... */ 
}

CSS :out-of-range 示例

这是一个:out-of-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! Value is out of specified range.";
      color: red;
      background-color: aqua ;
   }

   p {
      color: green;
   }
   </style>
   </head>
   <body>
      <h2>:out-of-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>
广告