Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Coming up with my own solutions to the issues I came across.
What challenges did you encounter, and how did you overcome them?grid layout
What specific areas of your project would you like help with?Any tips on best CSS practice and layout & how you like to format your CSS.
Community feedback
- @GD-neoPosted 6 months ago
- you can use
grid-template-rows:
to specify how large (high) you want your rows to be. - eg. if you want two rows, on eat 150px and one at say 200px you could do:
grid-template-rows: 150px 200px;
that way you have more control over how large your individual cards are - same goes for columns
- say your want 4 columns at 100px 150px 150px 200px width:
grid-template-columns: 100px 150px 150px 200px
- this way you have more control and could better reach the sizes of the cards set in the task
- i hope you find this helpful. :D
0@RohanIVPosted 6 months agoThank you I will keep that in mind for my future projects @GD-neo
0 - you can use
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