Tell us what’s happening:
lesson quest:
Step 15
In your third tr
element, add a th
element with the text Savings Funds set aside for emergencies.
. Wrap that text, except for Savings
, in a span
element with the class
attribute set to description
.
Following that, add three td
elements with the following text (in order): $500
, $650
, $728
. Give the third td
element a class
attribute set to current
.
but show “WRONG MESSAGE”, i can’t figure it out:
Sorry, your code does not pass. Don’t give up.
Your firsttd
element should have the text$500
.
Your code so far
<tr class="data">
<th>Savings <span class="description">Funds set aside for emergencies.</span> </th>
<td> $500 </td>
<td> $650 </td>
<td class="current"> $728 </td>
</tr>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 15