Complete the code to hide the paragraph using Tailwind CSS.
<p class="[1]">This text is hidden.</p>
The hidden class in Tailwind CSS hides the element completely.
Complete the code to make the div invisible but still take up space.
<div class="[1]">Invisible but space reserved</div>
The invisible class makes the element invisible but it still occupies space on the page.
Fix the error in the code to hide the button on small screens only.
<button class="sm:[1]">Click me</button>
The sm:hidden class hides the button on small screens and larger.
Fill both blanks to make the image hidden on medium screens and visible on large screens.
<img src="image.jpg" class="[1] [2]" alt="Sample image">
The md:hidden class hides the image on medium screens, and lg:block shows it again on large screens.
Fill all three blanks to make the text invisible on small screens, visible on medium, and hidden on large screens.
<p class="[1] [2] [3]">Responsive visibility text</p>
The classes sm:invisible, md:visible, and lg:hidden control visibility on different screen sizes as required.