Design comparison
Solution retrospective
When using margins to create vertical space between elements should the margin be added to the bottom of the upper element or the top of the lower element? Does it matter, and / or is it a best practice matter?
Community feedback
- @Bader-IdrisPosted over 1 year ago
You can set the container in the middle of the screen whatever user changes it when you add these properties to it in CSS:
.container { position: absolute; top:50%; left: 50%; transform: translate(-50%, -50%); }
the new feature is transform, it has many lovely properties you can discover, I personally love it. Hope it's useful
Marked as helpful1@Leslie763Posted over 1 year agoThank you @Bader-Idris. I see there are a couple of other challenges that have a similar layout as this one, I will try your suggestion on one of those.
1
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