Complete the code to add small rounded corners to the button.
<button class="bg-blue-500 text-white p-2 [1]">Click me</button>
rounded-full which makes the element fully round.rounded-none which removes rounding.The rounded-sm class adds small rounded corners to the element.
Complete the code to make the image have large rounded corners.
<img src="photo.jpg" alt="Photo" class="[1]">
rounded-none which removes rounding.rounded-sm which is too small.The rounded-xl class applies extra large rounded corners.
Fix the error in the code to make the card have fully rounded corners.
<div class="bg-white p-4 shadow [1]">Card content</div>
rounded-none which removes rounding.rounded-lg which is not fully round.The rounded-full class makes the corners fully rounded, like a pill shape.
Fill both blanks to create a box with medium rounded corners and padding.
<div class="bg-gray-200 [1] [2]">Content</div>
rounded-md adds medium rounded corners and p-4 adds padding of 1rem all around.
Fill all three blanks to style a button with large rounded corners, blue background, and white text.
<button class="[1] [2] [3]">Submit</button>
p-1 instead of a color class.rounded-lg adds large rounded corners, bg-blue-500 sets a blue background, and text-white makes the text white.