Step says me " Also below the .left-container
element, create a new span
element with the text 230
."
My code is:
<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>
But it still says me " Your span
element should come after your .left-container
element."
I think it is a technical problem and I’m exhausted with cannot pass this step. I want to continue to next lessons.
When I try reset the lesson I wrote the same code. It says me " Your span
element should have the text 230
." now. OMG
edit: OMG I totally stupid. It was should:
<div class="left-container">
<h2 class="bold small-text">Amount per serving</h2>
<p>Calories</p>
</div>
<span>230</span>
</div>