According to the instructions below, am not sure why the challenge still gives few errors like this one( One span element should wrap the text Total Fat .)
Step 43
After your last .divider element, create a p element and give it the text Total Fat 8g 10%. Wrap Total Fat in a span element with the class set to bold. Wrap 10% in another span element with the class set to bold. Also wrap the words Total Fat 8g in an additional span element for alignment.
You have correctly added spans to create bold text for ‘Total Fat’ and ‘10%’. However, your third span element should wrap around ‘Total Fat 8g’, not just ‘8g’. This means that the span tags will also wrap around the span tags you previously added to ‘Total Fat’. So you will have a span within a span.
You can fix this simply by moving the opening span tag from the beginning of ‘8g’ to the beginning of the p element.
You should leave the span around ‘Total Fat’ which bolds that text. You added a third span which only wraps around the text ‘8g’. It should also wrap around ‘Total Fat’ (including wrapping around the span element which is already there).
So, yes, you will have three span elements.
EXAMPLE:
<p>I like <span class="bold">cheese</span> but not <span>smelly cheeses like <span class="bold">stinking bishop</span></span>.</p>
I nested a span within a span… that’s what you need to do.