Role of CSS: out-of-range Selector


Use the CSS :out-of-range selector to style <input> elements with a value outside a specified range.

Example

You can try to run the following code to implement the :out-of-range selector

Live Demo

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

Updated on: 01-Jul-2020

25 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements