1<style>
2 .grow-with-content { min-width: 200px; width: fit-content; }
3</style>
4
5<body>
6 <div class="grow-with-content" contenteditable="true">
7 The quick brown fox jumped over the lazy dog.
8 </div>
9</body>
10
11<!--
12also works if you're doing plain css code and you have it linked to html
13-->