I kindly ask for an assessment for the structuring planet data test.
here are my codes on codepen and css provided in the test.
do appreciate for your valuable review beforehand.
I kindly ask for an assessment for the structuring planet data test.
here are my codes on codepen and css provided in the test.
do appreciate for your valuable review beforehand.
Hi @bedribulut
Great job on this task!
Here are my comments:
<caption>
needs to be the first child of <table>
<colgroup>
we need to list all columns in <col>
elements. To not having to write <col>
twelve times we can use the <span>
attribute. This would be valid:<col span="2">
<col style="border: solid;">
<col span="9">
<th scope="row">
rowspan
and colspan
attributes are all correct scope
attributes are mostly correct with the exception of “Gas giants” and "Ice giants. Since they span two rows they should be scope="rowgroup"
Aaaaaand that’s it!
I hope this feedback is helpful.
Keep up the good work,
Michael
Thanks a lot for your valuable review Michael!