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;
}