Complete the code to add a Tailwind class that makes text bold.
<p class="[1]">This text is bold.</p>
The font-bold class in Tailwind CSS makes the text bold.
Complete the code to add a Tailwind class that centers text horizontally.
<div class="[1]">Centered text</div>
The text-center class centers text horizontally in Tailwind CSS.
Fix the error in the Tailwind class to add padding of 4 units.
<section class="[1]">Content with padding</section>
In Tailwind CSS, padding is added with p-4. Other options are invalid.
Fill both blanks to create a responsive blue background with padding.
<div class="[1] [2]">Responsive box</div>
bg-blue-500 sets a blue background, and p-4 adds padding.
Fill all three blanks to create a flex container with centered items and gap.
<div class="[1] [2] [3]">Flex container</div>
block instead of flex or missing gap class.flex makes the container flexible, items-center centers items vertically, and gap-4 adds space between items.
