
Design comparison
Solution retrospective
I'm proud of being able to solve this without tutorials.
What challenges did you encounter, and how did you overcome them?Styling the table, I overcame it by using w3schools.com
What specific areas of your project would you like help with?Changing the colors on the bullet points and numbers on the lists.
Community feedback
- P@Joz312vPosted 15 days ago
Hi, for the ul and ol changing colors without affecting the text inside of it.
ol { counter-reset: list-counter; }
ol li::before { content: counter(list-counter) "."; color: var(--brown-800); }
.bullets li::marker { color: var(--brown-800); font-size: 1em; }
Learn more about it here:
https://www.w3.org/Style/Examples/007/color-bullets.en.html
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