JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<div class="child"> Ignore parent? </div>
<div> another child </div>
</div>
CSS
.parent {
display: flex;
}
.child {
float: right;
}
<div class="parent">
<div class="child"> Ignore parent? </div>
<div> another child </div>
</div>
.parent {
display: flex;
}
.child {
float: right;
}