+ 3
what is the use of contenteditable attribute?
2 ответов
+ 10
The contenteditable attribute specifies whether the content of an element is editable or not. When it's not set on an element, the element will inherit it from its parent.
<p contenteditable="true">This is an editable paragraph.</p>
+ 2
Thank you Dayve for your help.