Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I did in less than three hours working quietly. I would like to be more focused next time and do it faster.
What challenges did you encounter, and how did you overcome them?To position the cards in the grid in the desktop version. I had to use different containers to position different elements, like name and position besides the image.
What specific areas of your project would you like help with?How to improve the code efficiency.
Community feedback
- @NegligencePosted about 2 months ago
Hi Jaime 👋🏻,
This is really great work for something done in less than three hours 👏🏻.
As for
How to improve the code efficiency.
Here's a personal preference that I personally use that you're welcome to try out if you want:
.container { grid: "a a b e" "c d d e" ; grid-template-columns: repeat(4, 1fr); } .card__1 {grid-area: a;} .card__2 {grid-area: b;} .card__3 {grid-area: c;} .card__4 {grid-area: d;} .card__5 {grid-area: e;}
Marked as helpful0
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