First commit.

This commit is contained in:
kj
2020-08-02 00:27:43 -04:00
commit b1d8a63862
3399 changed files with 130628 additions and 0 deletions

View File

@ -0,0 +1,12 @@
Indicates whether the element's content is editable.
This enumerated attribute indicates if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:
true or the empty string, which indicates that the element must be editable;
false, which indicates that the element must not be editable.
If this attribute is not set, its default value is inherited from its parent element.
Usage note:
This attribute is an enumerated one and not a Boolean one. This means that the explicit usage of one of the values true, false or the empty string is mandatory and that a shorthand like <label contenteditable>Example Label</label> is not allowed. The correct usage is <label contenteditable="true">Example Label</label>.