JSFiddle - React, Tailwind, and code Playground

HTML

<body spellcheck="false">
    <div class="text-block" contenteditable="true">    
    Some Text SpellCheck</div>
</body>

CSS

.text-block {
    resize: none;
    font-size:40px;
    border: none;
    line-height: 1;
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    min-width: 30px;
    overflow: visible;
    white-space: nowrap;
    display: inline-block;
}