JSFiddle - React, Tailwind, and code Playground

by Ashish Sharma

HTML

<div id='div1' align='center'><span id='grey'>Like</span><br>Tweet<br><span id='grey'>Share</span></div>
<div id='div2' align='center'>Content</div>

CSS

#div1
{
position:fixed;
top:30px;
left:5px;
    background:yellow;
    height:60px;
    width:50px;
    border:4px ridge black;
}
#div2
{
height:800px;
    width:200px;
    background:orange;
    margin-left:60px;
}
#grey{
    background:grey;
}