
HTML, CSS com Flexbox e Grid
Design comparison
Solution retrospective
This was the most difficult project I've done so far; I'm proud to have managed to complete it. I had a lot of trouble with the Grid property; the good thing is that I got to practice until I learned how to use it. There's nothing I would do differently in this project, partly because I don't know what I could have done differently.
What challenges did you encounter, and how did you overcome them?The challenges I faced were the responsiveness. I had done the Mobile and Tablet responsiveness with ease; I had a bit of trouble with the Grid on Desktop, but I solved it by using a few divs, only to find that I had ruined the page on the mobile and desktop versions. I solved this problem by undoing the divs I made and trying other ways to use the Grid.
What specific areas of your project would you like help with?I would like help with the Grid; if you could tell me other ways to create the page with grid, I would appreciate it.
Community feedback
- @asia272Posted 12 days ago
Hi Vario Eduardo Santos,
You can use the grid-template-areas property for your layout. This approach will help you structure your design efficiently.
The grid-template-areas property allows you to define a visual layout of your grid by assigning names to different sections. Instead of manually placing items with grid-column and grid-row, you can use named areas, making your CSS more readable
main {
display: grid;
grid-template-areas:
'one one one one one two five' 'three four four four four four five';
gap: 1.55rem;
}
The grid-area property is then used to assign sections to these named areas inside grid-template-areas:
.one { grid-area: one; }
.two { grid-area: two; }
.three { grid-area: three; }
.four { grid-area: four; }
.five { grid-area: five; }
Additional Notes:
-
You don’t need to specify the width of each section explicitly.
-
Remove any margins from the sections to make the grid layout work properly.
Marked as helpful1P@Carlos-Eduardo-SPosted 12 days ago@asia272 Thank you very much for the tips. I will try to apply them in my next project.
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