Learn-more-about-css-pseudo-selectors-by-building-a-balance-sheet - Step 13

It says You should wrap the text This is the cash we currently have on hand. in a span element. but I don’t know what i’m doing wrong.

          <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>

Hey @JustMarcos
Your code looks ok check for spaces before the text cash
Happy coding

Learn-more-about-css-pseudo-selectors-by-building-a-balance-sheet - Step 13

@opudoprince Could you provide all of the code so we can get a better look?

 From what I see so far looks fine.  Please provide as much details as you can.   Did you get any errors? What were the errors? 

image

I suggest if your above code isn’t accepted to click on the reset button as seen in the image above. Then retype your code and click on the check your code button. I hope this helps. Keep us posted. -Keep coding.

1 Like

Welcome to the community @JustMarcos !

It appears there is too much space between some of the code.

This may have been an automatic response (to tap the enter) when nearing the end of the visible input area.
Do not touch anything to move have on hand.</span> to a new line.
It needs to be on the same line as the rest of the code.
It is fine if it naturally wraps to the next line.
But, it should not be moved by using the enter, as it appears from my check, has been done. This will cause the code to fail due to unnecessary white space.

I hope this helps you move on.

Happy coding! :sun_with_face:

1 Like

Thanks all! there was indeed something wrong with the spacing.

1 Like

You are very welcome @JustMarcos !

Keep up the good progress!

Cash This is the cash we currently have on hand. $25 $30 $28

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