JSFiddle - React, Tailwind, and code Playground

by VixedS

HTML

<div class="sidebar">Pizza <br /> Hobby</div>
<div class="content">Spaghetti</div>

CSS

.sidebar{
    	width: 280px;
    	float: left;
      background:#EEE; // just for this example
    }
    .sidebar + .content{
    	margin-left: 300px
    }