Complete the code to make the text uppercase using Tailwind CSS.
<p class="[1]">hello world</p>
text-lowercase which makes text lowercase.text-capitalize which only capitalizes first letters.The uppercase class in Tailwind CSS transforms text to uppercase.
Complete the code to make the text lowercase using Tailwind CSS.
<span class="[1]">HELLO WORLD</span>
text-uppercase which makes text uppercase.text-capitalize which only capitalizes first letters.The lowercase class in Tailwind CSS transforms text to lowercase.
Fix the error in the code to correctly transform text to capitalized form using Tailwind CSS.
<div class="[1]">hello world</div>
text-uppercase which makes all letters uppercase.text-lowercase which makes all letters lowercase.The capitalize class capitalizes the first letter of each word in Tailwind CSS.
Fill both blanks to create a paragraph with uppercase text and normal font weight using Tailwind CSS.
<p class="[1] [2]">This is important!</p>
font-bold instead of font-normal.text-lowercase instead of uppercase.Use uppercase to make text uppercase and font-normal for normal font weight.
Fill all three blanks to create a heading with lowercase text, bold font, and centered alignment using Tailwind CSS.
<h1 class="[1] [2] [3]">Welcome Home</h1>
Use lowercase for lowercase text, font-bold for bold font, and text-center to center the text.