Complete the code to add an underline to the text using Tailwind CSS.
<p class="[1]">This text should be underlined.</p>
text-bold which is not a valid Tailwind class and does not underline.italic which slants text but does not underline.The underline class in Tailwind adds an underline to the text.
Complete the code to remove underline from a link using Tailwind CSS.
<a href="#" class="[1]">No underline link</a>
underline which adds underline instead of removing it.The no-underline class removes the underline from text, commonly used on links.
Fix the error in the code to correctly add a line-through decoration using Tailwind CSS.
<span class="[1]">This text is crossed out.</span>
underline which underlines instead of crossing out.text-strike which is not a valid Tailwind class.The line-through class adds a line through the text, showing it as crossed out.
Fill both blanks to create a paragraph with underlined and bold text using Tailwind CSS.
<p class="[1] [2]">Important underlined text</p>
italic which slants text but does not make it bold.no-underline which removes underline.Use underline to add underline and font-bold to make text bold.
Fill all three blanks to create a link that is underlined, blue, and changes to red on hover using Tailwind CSS.
<a href="#" class="[1] [2] [3]">Hover me</a>
no-underline which removes underline.hover: prefix for hover effects.Use underline for underline, text-blue-600 for blue text, and hover:text-red-600 to change text color on hover.