Sel Read Write
## CSS :read-write Pseudo-class Selector
The `:read-write` CSS pseudo-class selector represents an element (such as an input or textarea) that is editable by the user.
In contrast to the `:read-only` selector, which targets elements that cannot be modified, `:read-write` targets any element that is currently in a writable state.
---
## Syntax
```css
:read-write {
/* CSS declarations */
}
```
---
## Definition and Usage
The `:read-write` selector matches elements that are both readable and writable.
Typically, this selector applies to:
* `` elements that do not have the `readonly` or `disabled` attributes.
* `
YouTip