
Solution retrospective
I encountered an issue when I had to change the color of a bullet point, so I used W3Schools to overcome it.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @tinuola
Nice work getting this close to the design spec, Muhammad.
A layout issue I notice is that the CSS styles are not applied when the screen is larger than 1440px. To fix this, update the second media query by removing the
(max-width: 1440px)
range.Also, there's little need for the first media query:
@media (max-width: 600px)
since by default you're starting with the mobile style, and the second media query sets the next breakpoint.Lastly, I recommend grouping the page sections with either
div
orsection
tags so that the code is organized and can be easier to read.Good luck with future projects!
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