Style elements with a "required" attribute with CSS


Use the CSS : required selector to style <input> elements with a "required" attribute.

Example

You can try to run the following code to implement the :required Selector

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:required {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <form>
         Subject: <input type = "text" name = "subject" value = "C++"><br>
         Student: <input type = "text" name = "student" value = "Amit" required><br>
      </form>
   </body>
</html>

Updated on: 01-Jul-2020

335 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements