Design comparison
SolutionDesign
Solution retrospective
Learned some new things about positioning backgrounds ^_^
Community feedback
- @fernandolapazPosted over 1 year ago
Hi 👋🏻, just a couple of things that may interest you:
- You might consider using an unordered list
<ul>
for the stats.
- In addition to resetting the
box-sizing
like you did, it is also good practice to remove margins and padding to have a clean starting point and reduce differences between browsers:
* { box-sizing: border-box; margin: 0; padding: 0; }
Nice solution : )
Regards,
Marked as helpful0 - You might consider using an unordered list
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