Danijel
@danijelcheAll comments
- @cendyzSubmitted 18 days ago
- @DAJ350Submitted about 1 month agoWhat are you most proud of, and what would you do differently next time?
I'm proud of my use of CSS Grids to achieve the layout of the content. I am also pleased with my use of custom CSS properties.
What challenges did you encounter, and how did you overcome them?Figuring out how to get pixel perfect sizing with the main content. I eventually settled with using the percentage units. I was not sure how else to proceed.
What specific areas of your project would you like help with?Sizing in CSS to achieve more accurate dimensions.
@danijelchePosted about 1 month agoHi, good solution just i think that you need one more @media query for tablets(2 columns), cause you jump straight from Desktop design to Mobile.
0 - @ChimiRinzin-HWRSubmitted about 2 months agoWhat are you most proud of, and what would you do differently next time?
More familiar with CSS Grid.
@danijelchePosted about 2 months agoHello i think you should add one more media query between max width and media(max-width: 600px), something like this @media(max-width: 1024px){ main{ grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, min-content); gap: 4vw; } .fifth { grid-column: 1/4; grid-row: 3; } Cheers!
Marked as helpful1