JSFiddle - React, Tailwind, and code Playground

by Aron Martin

HTML

<div id="wrapper">
    <div class="content">
        <p> This is a test </p>
    </div>
     
    <div class="content">
        <p> This is a test </p>
    </div>
    
    
</div>

CSS

#wrapper {
    width:100%;
    background-color:#000;
    height:auto;
    padding:50px;

}

.content{
    margin-top:50px; 
    padding:50px;
     background-color:#fff;
    width:20%;
    position:static;
}
}