Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
that I am improving
What challenges did you encounter, and how did you overcome them?to add border to every table row
What specific areas of your project would you like help with?adding border to the table in css
Community feedback
- @nickdexterPosted 5 months ago
Nice work,
To add the border to the table try this:
td { border-bottom: 1px solid hsl(30, 18%, 87%); } tr:last-child > td { border-bottom: 0; }
This should add a bottom border to each table row except for the last one. Hope this helps!
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord