Design comparison
SolutionDesign
Solution retrospective
So far I think this is my cleanest challenge. Any feedback is much appreciated :) !
Community feedback
- @palgrammingPosted over 3 years ago
it transitions from the desktop theme to the four cards in a row and if I am not mistaken the 4 cards in the row are wider than the desktop layout. You might want to look at your transitions again and how long you can keep the desktop layout as you transition to mobile
2 - @lc-dev90Posted over 3 years ago
You can use grid css property, mix grid template areas like this:
.content{ display: grid; grid-template-area: grid-template-areas: "left center1 right" "left center2 right"; } /* and align each of item with align-self and justify self*/
0
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