Recall & Review
beginner
What Tailwind class sets the border color to blue?Use
border-blue-500 to set the border color to a medium blue shade.Click to reveal answer
beginner
How do you make a border dashed using Tailwind?
Use the class
border-dashed to change the border style to dashed.Click to reveal answer
beginner
Which Tailwind class removes the border?Use
border-0 to remove the border completely.Click to reveal answer
intermediate
How to set a thick solid border in Tailwind?
Combine
border-4 for thickness and border-solid for style.Click to reveal answer
intermediate
What is the Tailwind class to set a red border color with a dotted style?Use
border-red-600 for red color and border-dotted for dotted style.Click to reveal answer
Which Tailwind class sets the border color to green?
✗ Incorrect
The class
border-green-500 sets the border color to a medium green shade.How do you make a border solid in Tailwind?
✗ Incorrect
The class
border-solid sets the border style to solid.Which class removes the border in Tailwind?
✗ Incorrect
border-0 removes the border by setting its width to zero.What does
border-2 do in Tailwind?✗ Incorrect
border-2 sets the border width to a size defined by Tailwind's spacing scale, not pixels or rem.Which class combination sets a red dotted border?
✗ Incorrect
Use
border-red-600 for red color and border-dotted for dotted style.Explain how to change both the border color and style using Tailwind classes.
Think about how you add multiple classes to one HTML element.
You got /3 concepts.
Describe how to make a thick, solid, blue border using Tailwind.
Combine thickness, style, and color classes.
You got /3 concepts.