Recipe using pure CSS and no classes

Solution retrospective
Changing hr into a single shade, you will need to add border-style:solid.
hr { border-color: var(--stone-150); border-style: solid; }
Targeting the li marker specifically to change it's color
ul ::marker { /* works */ } li::marker{ /* works */ }
Adding border to the each rows
What challenges did you encounter, and how did you overcome them?tr:not(:last-child) td { border-bottom: 1px solid var(--stone-150); }
Mainly the learnings above, also just searching for the answers. I am using the codeium extension on vscode.
What specific areas of your project would you like help with?I used header tags just for the easy benefit of the padding and sizing, is there a better html element to use for headers?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @MiksDev04
nicee!! 🤩 Your solution is almost the same as the original design. Great job. Keep it up!
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