JSFiddle - React, Tailwind, and code Playground
HTML
<span contenteditable="true" onfocus="if(this.innerHTML='Type content here...')this.innerHTML=''">Type content here...</span>
CSS
span:focus {
background: #ff0;
}
<span contenteditable="true" onfocus="if(this.innerHTML='Type content here...')this.innerHTML=''">Type content here...</span>
span:focus {
background: #ff0;
}