Latest solutions
Latest comments
- @HaarithBinSabur@Wanjiru-M
Great job on tackling the challenge! Your solution is well thought out and effectively addresses the requirements.
However, I noticed a small styling issue in the nutrition section. The layout could be improved by adding a horizontal line below each row. You can easily achieve this by using the nth-child selector in your CSS, similar to the following sample code:
.table-split tr:not(:last-child) td { border-bottom: 1px groove hsl(300, 18%, 87%); }
Marked as helpful