Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Height utilities
📖 Scenario: You are building a simple webpage section that shows three colored boxes stacked vertically. Each box should have a different height using Tailwind CSS height utilities.
🎯 Goal: Create three <div> elements inside a container. Use Tailwind CSS height utilities to set the first box height to h-16, the second box height to h-24, and the third box height to h-32. Each box should have a distinct background color and some margin between them.
📋 What You'll Learn
Use a container <section> with Tailwind class p-4 for padding.
Create three <div> boxes inside the container.
Set the first box height to h-16 and background color to bg-red-500.
Set the second box height to h-24 and background color to bg-green-500.
Set the third box height to h-32 and background color to bg-blue-500.
Add vertical margin mb-4 between the boxes.
💡 Why This Matters
🌍 Real World
Setting fixed heights on elements is common in web design to create consistent layouts, cards, or sections with visual balance.
💼 Career
Knowing how to use Tailwind CSS height utilities helps you quickly style components in modern web projects, improving your frontend development skills.
Progress0 / 4 steps
1
Create the container section
Create a <section> element with the Tailwind class p-4 to add padding around the content.
Tailwind
Hint
Use a semantic <section> tag and add p-4 class for padding.
2
Add the first box with height h-16
Inside the <section>, add a <div> with Tailwind classes h-16, bg-red-500, and mb-4 to create the first box with height 4rem, red background, and margin below.
Tailwind
Hint
The height h-16 means 4rem tall. Use bg-red-500 for a red background and mb-4 for margin bottom.
3
Add the second box with height h-24
Below the first box, add a second <div> with Tailwind classes h-24, bg-green-500, and mb-4 to create a taller green box with margin below.
Tailwind
Hint
The height h-24 means 6rem tall. Use bg-green-500 for a green background and mb-4 for margin bottom.
4
Add the third box with height h-32
Below the second box, add a third <div> with Tailwind classes h-32 and bg-blue-500 to create the tallest blue box. Do not add margin below this last box.
Tailwind
Hint
The height h-32 means 8rem tall. Use bg-blue-500 for a blue background. No margin needed below the last box.
Practice
(1/5)
1. What does the Tailwind CSS class h-16 do to an element?
easy
A. Sets the element's height to 4rem
B. Sets the element's width to 16rem
C. Sets the element's minimum height to 16rem
D. Sets the element's maximum height to 4rem
Solution
Step 1: Understand Tailwind height scale
In Tailwind, h-16 sets height using a spacing scale where 16 equals 4rem.
Step 2: Confirm the effect on element
The class fixes the element's height exactly to 4rem, not width or min/max height.
Final Answer:
Sets the element's height to 4rem -> Option A
Quick Check:
h-16 = height 4rem [OK]
Hint: Remember h-16 means height 4rem in Tailwind scale [OK]
Common Mistakes:
Confusing height with width classes
Mixing fixed height with min or max height
Assuming h-16 means 16rem instead of 4rem
2. Which of the following is the correct Tailwind class to set an element's minimum height to 100% of its parent?
easy
A. min-h-full
B. h-min-full
C. max-h-full
D. min-height-full
Solution
Step 1: Identify correct prefix for minimum height
Tailwind uses min-h- prefix for minimum height utilities.
Step 2: Confirm the correct suffix for 100%
full means 100% of the parent size, so min-h-full sets min-height to 100%.
Final Answer:
min-h-full -> Option A
Quick Check:
min-h-full = min-height 100% [OK]
Hint: min-h-full means minimum height 100% [OK]
Common Mistakes:
Using wrong prefix like h-min-full
Confusing max-h-full with min-h-full
Writing non-existent class min-height-full
3. Given this HTML snippet:
<div class="max-h-24 overflow-auto">Content</div>
What will happen if the content inside the div is taller than 6rem?
medium
A. The div height will grow beyond 6rem and show all content
B. The div height will be fixed at 24rem with no scrollbar
C. The div height will be limited to 6rem and show a scrollbar
D. The div height will collapse to 0 because of overflow-auto
Solution
Step 1: Understand max-h-24 meaning
max-h-24 sets maximum height to 6rem (24 x 0.25rem).
Step 2: Effect of overflow-auto with max height
If content is taller than max height, overflow-auto adds a scrollbar inside the div.
Final Answer:
The div height will be limited to 6rem and show a scrollbar -> Option C
Quick Check:
max-h-24 + overflow-auto = max height 6rem with scrollbar [OK]
Hint: max-h sets max height; overflow-auto adds scrollbar if needed [OK]
Common Mistakes:
Thinking max-h-24 sets fixed height
Ignoring overflow-auto effect
Assuming height grows beyond max-h
4. You want to set an element's height to exactly 5rem using Tailwind CSS, but your code uses h-20 and the height is too large. What is the mistake?
medium
A. h-20 sets height to 5rem, so no mistake
B. h-20 sets height to 5rem, but you should use h-12 for 5rem
C. h-20 sets height to 5rem, but you need min-h-20
D. h-20 sets height to 20rem, which is too large
Solution
Step 1: Check Tailwind spacing scale for h-20
In Tailwind, h-20 means height of 5rem (20 x 0.25rem = 5rem), so this matches the desired height.
Step 2: Re-examine the problem statement
The question says height is too large, so likely the user confused the scale or used a wrong unit.
Step 3: Clarify the mistake
Actually, h-20 is 5rem, so if height is too large, the user might have used a custom scale or misunderstood the unit.
Final Answer:
h-20 sets height to 20rem, which is too large -> Option D
5. You want a responsive div that has a fixed height of 8rem on small screens, but on medium screens and above, it should have a maximum height of 12rem and scroll if content overflows. Which Tailwind classes achieve this?
hard
A. h-8 md:max-h-12 md:overflow-scroll
B. h-32 md:max-h-48 md:overflow-auto
C. h-32 md:max-h-48 md:overflow-scroll
D. h-8 md:max-h-48 md:overflow-auto
Solution
Step 1: Convert rem to Tailwind scale
8rem = 32 x 0.25rem, so h-32 sets height 8rem. 12rem = 48 x 0.25rem, so max-h-48 sets max height 12rem.
Step 2: Apply responsive prefixes and overflow
On small screens, fixed height 8rem means h-32. On medium screens and above, max height 12rem with scroll means md:max-h-48 md:overflow-auto.
Step 3: Match options with correct classes
h-32 md:max-h-48 md:overflow-auto uses correct classes for fixed height and responsive max height with scroll. Other options have incorrect scales or overflow behavior.