Role of CSS :read-write Selector


Use the CSS :read-write selector to select elements that are ‘readable’ and ‘writable’.

Example

You can try to run the following code to implement the :read-write selector:

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:read-write {
            background-color: blue;
            color: white;
         }
      </style>
   </head>
   <body>
      <form>
         Subject: <input type = "text" name = "subject" value = "Java"><br>
         Student: <input type = "text" name = "student" readonly value = "Amit"><br>
      </form>
   </body>
</html>

Updated on: 01-Jul-2020

41 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements