Design comparison
Solution retrospective
Hello,
I really appreciate feedback on css grid and overall code.
Thanks
Community feedback
- @artimysPosted about 4 years ago
Hi Wissem, good job.
Just a few suggestions starting with semantics in your HTML:
- Your
div.container
can use<main class="container">
- Your
div.card
can use<section class="card">
-- Your grid structure its spot on. I would just improve on naming convention so it's more meaningful for the
grid-area
. Use the content in each box to help define a name.// example grid-area: join; grid-area: monthly; grid-area: whyus;
--
Visual suggestions
- remove
border-shadow
andborder-radius
from individual.card
and apply to its parent container.
Keep it up!! 👍👍
1@Wiss69Posted about 4 years ago@artimys Hi Artimys,
Many thanks for the feedback I take note of it. When I put the
box-shadow
andborder-radius
on the parent element.grid
, the shadow is ok, but the border-radius doesn't work and I don't know why...Thanks
0@artimysPosted about 4 years ago@Wiss69
I've seen that happen sometimes. Try adding
overflow: hidden;
to your.grid
container0 - Your
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