JSFiddle - React, Tailwind, and code Playground
by Daedalus
HTML
<div class="row">
<div id="one" class="block">
text
</div>
</div>
<div class="row">
<div id="two" class="block">
text
</div>
</div>
CSS
.row {
clear: both;
}
.block {
height: 100px;
width: 100px;
float: right;
margin-top: 10px;
}
#one {
margin-right: 10px;
border: 1px solid red;
}
#two {
border: 1px solid blue;
margin-right: 25%;
}