@VincinChristmasSubmitted 3 months ago
zanfa97
@zanfa97All comments
- @zanfa97Posted 3 months ago
Great job, you've just forgotten the horizontal lines under each section and each table row.
You can just use
border-bottom
for that.For table rows, you need to use
border-collapse: collapse
on the table and add aborder-bottom
for each row (except the last one; you can usetr:last child
and setborder-bottom: none
for that).Furthermore, I suggest you to put
width: 100%
on table, deletingpadding-left
forth
and usetext-align: start
.Marked as helpful0 - @minnaingkokoSubmitted 3 months ago
- @HagarRagabSubmitted 3 months ago@zanfa97Posted 3 months ago
Great job, you can use [Custom properties] (https://css-tricks.com/a-complete-guide-to-custom-properties/) to store colors in variables in order to reuse them without rewriting them every time.
Marked as helpful0