Complete the code to apply a max-width of 4xl on medium screens and above.
<div class="max-w-[1] md:max-w-4xl">Content</div>
The class md:max-w-4xl sets the max-width to 4xl on medium screens and larger. The base max-width here is set to 3xl.
Complete the code to apply a max-width of 2xl on small screens and 5xl on large screens.
<section class="max-w-[1] lg:max-w-5xl">Content</section>
The class max-w-2xl applies max-width 2xl on small screens by default, and lg:max-w-5xl overrides it on large screens.
Fix the error in the code to correctly apply max-width 3xl on medium screens.
<div class="max-w-xl md:max-w-[1]">Content</div>
The class md:max-w-3xl correctly sets max-width 3xl on medium screens and above.
Fill both blanks to create a responsive container with max-width 2xl on base and 6xl on extra-large screens.
<div class="max-w-[1] xl:max-w-[2]">Content</div>
The base max-width is set to 2xl and on extra-large screens (xl) it changes to 6xl.
Fill all three blanks to create a responsive card with max-width xl on base, 3xl on medium, and 7xl on 2xl screens.
<article class="max-w-[1] md:max-w-[2] 2xl:max-w-[3]">Card content</article>
The card has max-width xl by default, changes to 3xl on medium screens, and 7xl on 2xl screens for a smooth responsive design.