Step 13 of building a Balance Sheet

hello ,guys, please help me with it :pray:
this is the task:
In your first tr, add a th element with the text Cash This is the cash we currently have on hand.. Wrap all of that text except Cash in a span element with the class set to description.

Following that, add three td elements with the following text (in order): $25, $30, $28. Give the third td element a class attribute set to current.

this is my solution:


<tr class="data">
                 <th> Cash <span class="description"> This is the cash we currently have on hand.</span></th>
                  <td>$25</td>
                  <td>$30</td>
                  <td class="current">$28</td>
              </tr>

this is the hint I get:
You should wrap the text This is the cash we currently have on hand. in a span element.


I feel like I did everything right, what am I missing ? :face_holding_back_tears:balance sheet, step 13

Hello and welcome to the forum! Please post a link of the challenge with all of your code. You can reply to this and use the format button </>. Please paste all your code between the lines it gives you. We will need both the link and the code to fully help you

hey, thanks for telling me this, I have just edited it !

I see you have added the code. Can you you paste the link to the challenge? This would help so the people viewing your post dont have to search through the curriculum looking for the challenge you are on

Also, for future reference each challenge should have a help button or a question mark that appears. When you click these buttons it will generate a post for you in the forum that already includes a link to the challenge, and the code.

1 Like

Thank you for pasting the link. So your code is correct there is just a spacing issue that is causing the challenge to fail here.

<th> Cash <span class="description"> This is the cash we currently have on hand.</span></th>

If you get rid of the space between the > after description and before the word this. Then the challenge should pass.

1 Like

you were right, such a simple mistake :rofl: thank you so muck :pray:

1 Like

No worries, it happens. Again welcome to the forum! :smiley:

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