Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
im proud of completing the challenge and im happy with how it turned out! next time i'll set a timer and try not to get distracted :)
What specific areas of your project would you like help with?i don't know how to select only the last line of the table
Community feedback
- @kodan96Posted 6 months ago
hi there! 👋
If you want to remove the border from the last table row, it's easier to achieve this if you don't apply the border to it at the first place. You can achieve this with
table tr:not(:last-child) { border-bottom: //add values here; }
this selector selects all childs of the specified type, except the last one.
Hope this helped 🙏
Good luck and happy coding!
Marked as helpful1
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