I am getting an error saying I should have three td elements. I am sure I have all three so what am I missing??
[Learn more about css pseudo selectors by building a balance sheet step-21]
Step 21
Within the first tr, add a th element with the text Loans The outstanding balance on our startup loan. Wrap that text, except for Loans , within a span element with the class set to description.
Add three td elements below that, and give them the following text, in order: $500, $250, and $0. Give the third td element a class set to current.
My code…
<tr class="data">
<th> Loans <span class="description">The outstanding balance on our startup loan.</span></th>
</tr>
<tr class="data">
<td>$500</td>
</tr>
<tr class="data">
<td>$250</td>
</tr>
<tr class="total">
<td class="current">$0</td>
</tr>