JSFiddle - React, Tailwind, and code Playground
by cmruser
HTML
<nav>
<div>
<p>Header</p>
<span>test</span>
<span>test</span>
<p>Header</p>
</div>
</nav>
<section>test</section>
CSS
nav { width:50px; float:left; position:relative; }
section{ width:100px; height:100px; background-color:#eee; float:left;}
div { height:100px; background-color:#ccc;}
span { background-color:red; display:block; color:#fff; margin-right:-100px;}
p { padding:0; margin:0;}