Assessment wanted for tables skill test by bedri

I kindly ask for an assessment for the tables skill test.
here are the codes on codepen.
I do appreciate for your valuable review beforehand.

Hi @bedribulut

That looks fine. Congratulations! :tada:

Two comments:

  • Maybe add a bit of padding to all th and td to give the cells some space.
  • You could simplify the alignment rules. This would target the cells in thead and tbody:
    tr :nth-child(2),
    tr :nth-child(3) {
      text-align: right;
    }
    

Keep up the good work!
Michael

1 Like

Thank you so much Michael

1 Like