JSFiddle - React, Tailwind, and code Playground

by panchroma

HTML

<section class="main header">Header<br />subheader</section>

<aside>picture<br /><br />d</aside>
<aside>to be made sticky</aside>

<section class="main content">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>

CSS

.header{
    height:100px;
    background-color:pink;
}
.main {
            width: 60%;
            margin-right: 5%;
            float: left;
    
        }

.content{
    position:absolute;
    top:110px;
}

aside {
width: 35%;
float: right;
clear:right;
    background-color:#aaa;
    margin-bottom:10px;
        }