Style every disabled element with CSS


To style every disabled <input> element, use the CSS :disabled selector. You can try to run the following code to style disabled element −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:enabled {
            background: blue;
         }
         input:disabled {
            background: red;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age" disabled><br>
      </form>
   </body>
</html>

Updated on: 30-Jun-2020

430 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements