Learn Typography by Building a Nutrition Label - Step 50

Step 50

After your last .divider, create another p element with the text Trans Fat 0g. Italicize the word Trans by wrapping it in an i element. Give the new p element the class attribute set to indent no-divider.

this is my code SO FAR!!!

    <p class="right bold no-divider">% Daily Value *</p>
    <div class="divider"></div>
    <p><span class="bold">Total Fat</span> 8g<span class="bold right">10%</span></p>
    <p class="indent no-divider">Saturated Fat 1g <span class="bold right">5%</span></p>
    <div class="divider"></div>
    <p class="indent no-divider" <i>Trans</i>Fat 0g</p>
  </div>
</div>
```

help guys
I’m stuck
the code isn’t passing

Close your opening ‘p’ tag after class attribute.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.