JSFiddle - React, Tailwind, and code Playground
by Kalu Singh Rao
HTML
<div class="left">
<ul>
<li>Headline1</li><li>Headline2</li><li>Headline3</li>
</ul>
</div>
<div class="header1">
<h3> Headline1 </h3>
<br/>
<p>Content here...</p>
</div>
<div class="header2">
<h3> Headline2 </h3>
<br/>
<p>Content here...</p>
</div>
<div class="header3">
<h3> Headline2 </h3>
<br/>
<p>Content here...</p>
</div>
CSS
.left
{
height:500px;
width:250px;
float:left;
position:relative;
}
ul li
{
list-style-type:none;
}