Submitted over 1 year ago
Four card feature section | Seccion funciones cuatro cartas
@ale-08-12
Design comparison
SolutionDesign
Solution retrospective
- (Español) Esta es mi solución del desafío. Cualquier comentario es apreciado!
- (English) This is my solution to the challenge. Any feedback is appreciated!
Community feedback
- @HikmahxPosted over 1 year ago
Hi Alexander. Great solution! There are a few feedbacks that may help with your site:
- I think you should use a single-column grid or maybe flex display when on smaller screens like mobiles and tablets, and change it back to the 3-column grid when the media query is 1024px min-width. Adding a max-width property makes sure the card doesn't over-stretch and the margin aligns everything to the center.
.cuadros { grid-template-columns: repeat(1, 1fr); max-width: 500px; margin: auto; }
And you can also simply reset the max width back to none,
max-width: none;
, when on 1024px.Hope this helps
Marked as helpful1@ale-08-12Posted over 1 year agoThank you very much for the comment @Hikmahx, I'll be implementing it and seeing how it improves.
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