JSFiddle - React, Tailwind, and code Playground
HTML
<title>Text Editor</title>
<body>
<div contenteditable class="text" id="title">Title...</div>
<div contenteditable class="text">Body...</div>
</body>
CSS
body {background-color: #eed; font-size: 2rem;} img {max-width: 35%; float: right; margin: 1rem 1rem 1rem 0; padding: 1rem; background-color: #f5f3e0; border:1px solid #eae5d5;} .text {color: #432; font-family: monospace; line-height: 1.4; max-width: 60rem; margin: 0 auto; padding: 1rem 4rem 4rem 4rem;} #title {font-weight: bold; padding: 4rem 4rem 1rem 4rem;}