Design comparison
SolutionDesign
Solution retrospective
why does my grid have two gaps in the bottom?
Community feedback
- @detachedsoulPosted over 3 years ago
You've changed the flow of the elements. The last grid now has to start from the top and all the way down.
I solved that by giving each individual div a display of grid.
Let's say you have this format:
<div class="your main grid"> <div style="dispaly: grid;"> // Your content </div> <div style="dispaly: grid;"> // Your content </div> <div style="dispaly: grid;"> // Your content </div> </div>
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