
Solution retrospective
i would use flexbox to center the div instead of the old way where we use position absolute
Please log in to post a comment
Log in with GitHubCommunity feedback
- @slightlybelowzen
- The
<h2>
element hasn't been sized correctly. The design spec uses22px
to style it, and since no size has been specified in the css, it defaults to the browser default of1.5em
which is24px
assuming a base font size of16px
(also since the base font size hasn't been set in the css for thebody
element. - It's a good idea to apply a reset of
* { margin: 0; padding: 0; box-sizing: border-box; }
so you don't have default margins of elements messing with spacing and padding of elements.
Marked as helpful - The
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