Design comparison
SolutionDesign
Solution retrospective
Do you have any recommendations?
Community feedback
- @EJIOLOGYPosted over 2 years ago
Use Css flexbox for the Challenge
0@mohamed-sameerPosted over 2 years ago@EJIOLOGY actually using css grid on the main card making it easier to make it responsivenes
/*Desktop*/ .card{ display:grid; grid-template-column: repeat (3, 1fr); } /*Mobile*/ @media (max-width: 375px;){ .card{ grid-template-column: 1fr; }
And your design turns into one column for mobile , pretty simple.
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