Description : You can center a div using Tailwind by applying the classes `flex`, `items-center`, and `justify-center`.
Answer :
To center a div both horizontally and vertically, apply the following:`<div class='flex items-center justify-center h-screen'>Content</div>`. The `h-screen`classmakes the div take up the full height of the screen.