CSS :read-write Pseudo-class
Example
Select and style editable input elements:
input:read-write {
background-color: beige;
border: 2px
solid maroon;
}
Try it Yourself »
Definition and Usage
The :read-write
pseudo-class selects form elements
that are editable by the user.
Form elements with no "readonly" attribute, and no "disabled" attribute are defined as "read-" and "write-able".
Version: | CSS3 |
---|
Browser Support
The numbers in the table specify the first browser version that fully supports the pseudo-class.
Pseudo-class | |||||
---|---|---|---|---|---|
:read-write | 1 | 13 | 78 | 4 | 9 |
CSS Syntax
:read-write {
css declarations;
}
Related Pages
CSS Selector :read-only