Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

mobile first recipe main page using HTML and CSS

@zapfish1

Desktop design screenshot for the Recipe page coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

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

P
Koda👹 3,810

@kodan96

Posted

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 helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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