CSS Grid, flexbox

Solution retrospective
Struggled a bit initally to get the whole thing centered (not sure where the error was), bit went back a few steps and managed. Overall very happy and learned some new things about grid.
Feedback is very welcome as always!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @correlucas
👾Hello Patrick, congratulations for your solution!
Your component is really good done and the grid system is perfect. There are two fine adjustments you can do to improve its design.
1.Give the container more max-width to have the proper size
max-width: 1110px;
and give more padding for each card to have more space between the card and its borders.2.Improve the code semantics, replace the
<div>
that wraps each card with<article>
and the paragraph with the quote with the property tag<blockquote>
this way you'll wrap each block of element with the best tag in this situation. Pay attention that<div>
is only a block element without meaning.Hope it helps and happy coding!
Marked as helpful
Join 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