JSFiddle - React, Tailwind, and code Playground
by panchroma
HTML
<section class="main">Header<br />subheader</section>
<aside>picture<br /><br />d</aside>
<section class="main">List of things<br />
List of things<br />
List of things<br />
List of things<br />
List of things<br />
List of things<br />
</section>
<aside>to be made sticky</aside>
CSS
.main {
width: 60%;
margin-right: 5%;
float: left;
background-color:pink;
}
aside {
width: 35%;
float: right;
clear:right;
background-color:#aaa;
margin-bottom:10px;
}