JSFiddle - React, Tailwind, and code Playground

by YangHax

HTML

<div class="editable" id="editable">
    Hello
    <font color="red">Misspelledzz</font>
    Word
</div>

CSS

div.editable {
    width: 300px;
    height: 200px;
    border: 1px solid #ccc;
    padding: 5px;
}

JavaScript

// $('.editable').each(function(){
//     this.contentEditable = true;
// });

document.getElementById('editable').contentEditable = true;