JSFiddle - React, Tailwind, and code Playground
by timdown
HTML
<p>A paragraph</p>
<p>
An editable span:
<span id="hello">Hello World</span>
</p>
CSS
#hello {
background-color: lightgoldenrodyellow;
}
JavaScript
document.getElementById("hello").onclick = function(evt) {
if (!this.isContentEditable) {
this.contentEditable = "true";
this.focus();
}
};