JSFiddle - React, Tailwind, and code Playground

by Scott Kaye

HTML

<div>ThisIsAverylongstringthatshouldbebrokeneventually</div>
<div class="flex">ThisIsAverylongstringthatshouldbebrokeneventually</div>

CSS

body {
	word-wrap: break-word;
}

div {
	width: 200px;
	outline: 1px solid red;
	margin: 10px;
}

.flex {
	display: flex;
}