πCentering a Div in Tailwind CSS
We Need Knowledge of this :
use
h-screento make the element the height of the screen.use
flexto make the element aflexboxuse
items-centerto vertically center ituse
justify-centerto center it horizontally.
Horizontally and vertically center an element with Tailwind
<div class="h-screen flex items-center justify-center">
Horizontally and Vertically Centered Element
</div>Vertically centering an element with Tailwind
<div class="h-screen flex items-center">
Vertically Centered Element
</div>Horizontally centering an element with Tailwind
Last updated