You are better although your site is not responsive. Make use of css grids and flexbox for better layout. This is the same project you built. I built using css grid and flexbox. Kindly go through to get better understanding on how layout and responsivenes work https://www.frontendmentor.io/solutions/single-price-grid-component-using-css-grid-and-flexbox-RF2eD1iIC
single price grid component with flexbox
Design Comparison
Report
0Accessibility
issues0HTML
issues
Tyler Case's questions for the community
I'm having trouble with the responsiveness. Any feedback would be great.
Community Feedback
- 2
- 0
Thank You.
- 2
Hi Tyler!
Container margins are left over if you are already using flexbox for absolute centering (
justify-content: center
andalign-items: center
). But that absolute centering you're doing doesn't work properly because you need to assign its container (body) aheight: 100vh
.The blocks at the bottom (
.sign-up
and.benefits
) are in columns but they don't cover the entire row because they still retain a width of the 50% that you assigned them, so you must rewrite that value to 100% within the media query.I encourage you to review the documentation about Flexbox and Grid, the latter provides a more comfortable way to solve this design.
Greetings and continue with the challenges :)
- 0
Thank You.
Give some feedback to tcase629 about their solution
Join our Slack community
Join over 30,000 people taking the challenges, talking about their code, helping each other, and chatting about all things front-end!