Order Summary Card Mobile-first CSS Grid, Flexbox

Solution retrospective
How did you remove scrolling? Can someone help me with my code. Thanks in advance 🙂
Please log in to post a comment
Log in with GitHubCommunity feedback
- @arlagonix
How did you remove scrolling? There are 2 options:
- Set margin: 0 to body tag. I recommend this approach
- Set overflow: hidden to body tag
Also your background doesn't stretch to full width
If you're publishing your code on Github, I recommend to use Github Pages to host there your working application. Thus you will keep both code and demonstration in one place
Marked as helpful - @Mirna-Latif
Try to set the height: 100vh; to the body tag to remove the scrolling. I hope this will be helpful. body { height: 100vh; }
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