How do you create a full-height section using Tailwind CSS?
Description : Use the `h-screen` class to make an element take up the full height of the viewport.
Answer :
The `h-screen`classallows you to set an element’s height to 100%of the viewport. For example:`<section class='h-screen bg-gray-200'>Full height section</section>`. This section will cover the entire height of the viewport.