JSFiddle - React, Tailwind, and code Playground
HTML
<div class="content">Spaghetti</div>
<div class="sidebar">Pizza <br /> Hobby</div>
CSS
.sidebar{
width: 280px;
float: left;
background:#aaa; // just for this example
}
.content{
float: right;
}