0
0
Tailwindmarkup~5 mins

Border radius (rounded corners) in Tailwind - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the Tailwind CSS class rounded do?
It adds a small border radius to an element, making its corners slightly rounded.
Click to reveal answer
beginner
How do you make an element have fully rounded corners (a circle) in Tailwind CSS?
Use the class rounded-full. This sets the border radius to 9999px, making the element perfectly round if its width and height are equal.
Click to reveal answer
beginner
What is the difference between rounded-sm and rounded-lg in Tailwind CSS?
rounded-sm applies a small border radius, while rounded-lg applies a larger border radius, making corners more rounded.
Click to reveal answer
intermediate
How can you round only the top-left corner of an element in Tailwind CSS?
Use the class rounded-tl to apply border radius only to the top-left corner.
Click to reveal answer
intermediate
Why is using Tailwind's border radius classes better than writing custom CSS for rounded corners?
Tailwind classes are consistent, easy to use, and help keep your code clean and maintainable. They also support responsive design and theming.
Click to reveal answer
Which Tailwind class makes an element's corners fully rounded?
Arounded-none
Brounded-full
Crounded-lg
Drounded-sm
What does the class rounded-t do in Tailwind CSS?
ARounds top-left and top-right corners
BRounds all corners
CRounds bottom corners
DRemoves border radius
If you want slightly rounded corners, which class should you use?
Arounded-none
Brounded-xl
Crounded-full
Drounded-sm
How do you remove all rounded corners from an element in Tailwind CSS?
Arounded-remove
Brounded-0
Crounded-none
Drounded-clear
Which class rounds only the bottom-right corner of an element?
Arounded-br
Brounded-bl
Crounded-tr
Drounded-tl
Explain how to use Tailwind CSS classes to round only specific corners of an element.
Think about the corner abbreviations: tl = top-left, br = bottom-right.
You got /4 concepts.
    Describe the visual difference between using rounded-sm and rounded-full in Tailwind CSS.
    Imagine a square with slightly rounded edges versus a circle.
    You got /3 concepts.