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>
```