Challenge - 5 Problems
Border Radius Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📝 Syntax
intermediate2:00remaining
What is the correct Tailwind class for a medium rounded corner?
Choose the Tailwind CSS class that applies a medium border radius to an element.
Attempts:
2 left
💡 Hint
Tailwind uses size abbreviations like sm, md, lg, xl for border radius sizes.
✗ Incorrect
The class rounded-md applies a medium border radius. Other options apply different sizes.
❓ rendering
intermediate2:00remaining
Which Tailwind class will create fully rounded (circle) corners on a square element?
Select the Tailwind CSS class that makes a square element appear as a circle by rounding all corners fully.
Attempts:
2 left
💡 Hint
Think about which class makes corners fully round, like a circle.
✗ Incorrect
The rounded-full class makes the border radius large enough to create a circle shape on square elements.
❓ selector
advanced2:00remaining
Which Tailwind class rounds only the top-left corner?
Identify the Tailwind CSS class that applies rounding only to the top-left corner of an element.
Attempts:
2 left
💡 Hint
Look for the class with 'tl' which stands for top-left.
✗ Incorrect
The rounded-tl-md class rounds only the top-left corner with medium radius.
❓ layout
advanced2:00remaining
How does
rounded-none affect an element's corners?What visual effect does the Tailwind class
rounded-none have on an element's corners?Attempts:
2 left
💡 Hint
Think about what 'none' means for border radius.
✗ Incorrect
The rounded-none class removes any border radius, so corners are sharp (square).
❓ accessibility
expert2:00remaining
Why is it important to consider border radius in accessible design?
Select the best reason why using border radius thoughtfully improves accessibility in web design.
Attempts:
2 left
💡 Hint
Think about how shape affects visual clarity and user focus.
✗ Incorrect
Rounded corners can make buttons and inputs stand out visually, helping users identify interactive parts easily.