Complete the code to apply a red background only on small screens and larger.
<div class="[1]:bg-red-500">Hello</div>
The sm prefix applies styles starting from small screens (640px) and up.
Complete the code to make the text size large only on medium screens and above.
<p class="[1]:text-lg">Welcome!</p>
The md prefix applies styles starting from medium screens (768px) and up.
Fix the error in the code to apply padding only on large screens and above.
<section class="[1]:p-4">Content</section>
The lg prefix applies styles starting from large screens (1024px) and up.
Fill both blanks to apply margin on extra large screens and padding on 2xl screens.
<div class="[1]:m-6 [2]:p-8">Box</div>
The xl prefix applies styles from 1280px and up, and 2xl applies from 1536px and up.
Fill all three blanks to set font bold on small screens, text center on medium, and text blue on large screens.
<h1 class="[1]:font-bold [2]:text-center [3]:text-blue-600">Title</h1>
sm applies font bold starting at small screens (640px), md centers text at medium screens (768px), and lg colors text blue at large screens (1024px).