Role of CSS :enabled Selector



Use the CSS :enabled selector to style every enabled <input> element. You can try to run the following code to implement the :enabled selector −

Example

Live Demo

<!DOCTYPE html> <html>    <head>       <style>          input:enabled {             background: blue;          }       </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: 2020-06-30T09:51:14+05:30

227 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements