JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="left bottom">
I should be align
</div>
</div>
CSS
.container {
background:gray;
height:100px;
width:100%;
}
.left {
transform:translateX(50%);
}
.bottom {
transform:translateY(25%);
}