JSFiddle - React, Tailwind, and code Playground
by NicoO
HTML
<div class="margin-bottom">Hi</div>
<div class="bottom">Hi</div>
<div class="margin-bottom bottom">Hi</div>
CSS
body
{
margin:0;
padding:0;
}
.margin-bottom
{
margin-bottom:10px;
}
.bottom
{
bottom: 10px;
}
div
{
position: absolute;
width: 100px;
}
div:nth-child(1){
background-color: silver;
left:0;
}
div:nth-child(2){
background-color: blue;
left: 120px;
}
div:nth-child(3){
background-color: gold;
left: 220px;
}