Complete the code to add normal letter spacing to the text.
<p class="[1]">Hello, friend!</p>
tracking-wide or tracking-tight which changes spacing.tracking- prefix.The class tracking-normal sets the letter spacing to the default normal spacing.
Complete the code to increase letter spacing slightly.
<h2 class="text-xl [1]">Welcome!</h2>
tracking-tight which decreases spacing.tracking-normal which keeps default spacing.The class tracking-wide increases the space between letters slightly.
Fix the error in the class to apply the widest letter spacing.
<span class="[1]">Big space</span>
The correct Tailwind class for the widest letter spacing is tracking-widest.
Fill both blanks to create a paragraph with medium text size and tight letter spacing.
<p class="[1] [2]">Tight letters here.</p>
text-base sets a medium font size, and tracking-tight reduces the space between letters.
Fill all three blanks to create a heading with extra large text, widest letter spacing, and bold font weight.
<h1 class="[1] [2] [3]">Big and bold!</h1>
font-light instead of bold.text-4xl makes the text extra large, tracking-widest adds the widest letter spacing, and font-bold makes the text bold.