Open In App

CSS :read-write Selector

The :read-write selector is used to select an element (such as an input text) that is editable by the user. The elements with no readonly and disabled attribute are defined as readable and writable. 

Syntax:



:read-write {
    // CSS Property
}

Example 1: 




<!DOCTYPE html>
<html>
 
<head>
    <title>:read-write Selector</title>
    <style>
        input {
            min-width: 25em;
            padding: 10px;
        }
 
        /* CSS property for Firefox only */
        input:-moz-read-write {
            background: green;
            color: white;
        }
 
        input:read-write {
            background: green;
            color: white;
        }
    </style>
</head>
 
<body style="text-align:center">
    <h2>
        :read-write Selector
    </h2>
    <input type="text"
           value="Editable input field">
    <br><br>
    <input type="text"
           value="This is a read-only input field." readonly>
</body>
 
</html>

Output:



  

Example 2: 




<!DOCTYPE html>
<html>
 
<head>
    <title>:read-write Selector</title>
    <style>
        p:-moz-read-write {
            background: green;
        }
 
        p:read-write {
            background: green;
        }
 
        p[contenteditable="true"] {
            color: white;
        }
    </style>
</head>
 
<body style="text-align:center">
    <h2>
        :read-write Selector
    </h2>
 
    <p>
        This is a normal paragraph
    </p>
 
    <p contenteditable="true">
        This is editable paragraph!
    </p>
 
</body>
 
</html>

Output:

  

Supported Browsers: The browser supported by :read-write Selector are listed below:


Article Tags :