Learn Typography by Building a Nutrition Label - Step 33

I have gone on forums trying to figure this out. There is no .left-container element as .left-container is a class of the div element. I can put the span element underneath the div element that has left-container as its class, but that is clearly wrong. I do not know what I am doing wrong.
Also the calories above the “Amount per serving” is not supposed to be a thing, so I tried putting the span element under the h2 element to no avail.

<div class="calories-info">
  <div class="left-container">
    <span>230</span>
    <h2 class="bold small-text">Amount per serving</h2>
    <p>Calories</p>
  </div>
</div>

.left-container means “the class name ‘left-container’” (that’s what the dot indicates), so someone might say “.left-container element” to mean “the html element which uses the class ‘left-container’”.

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