How do you align items vertically in a flexbox using Tailwind?
Description : You can use `items-center` to align items vertically in Tailwind.
Answer :
To align flex items vertically to the center, use the `items-center`class. For example,`<div class='flex items-center h-screen'>` will vertically center all flex items inside the container.