files/en-us/web/css/reference/properties/user-modify/index.md
{{Non-standard_Header}}{{Deprecated_Header}}
The user-modify property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user.
[!WARNING] This property has been replaced by the
contenteditableattribute.
/* Keyword values */
user-modify: read-only;
user-modify: read-write;
user-modify: write-only;
/* Global values */
user-modify: inherit;
user-modify: initial;
user-modify: revert;
user-modify: unset;
The -moz-user-modify property is specified as one of the keyword values from the list below.
read-only
read-write
read-write-plaintext-only
read-write, but rich text formatting will be lost.write-only
{{CSSSyntaxRaw(user-modify = read-only | read-write | read-write-plaintext-only | write-only)}}
<div class="readwrite">The user is able to change this text.</div>
.readwrite {
-moz-user-modify: read-write;
-webkit-user-modify: read-write;
}
Not part of any standard.
{{Compat}}