Submitted 4 months ago
Four Card Feature section using html css flexbox grid
@canbld
Design comparison
SolutionDesign
Community feedback
- Account deleted
Hi Emir, while reviewing your code, I noticed a few areas for improvement.
Here they are:
-
Responsiveness: At screen sizes around
1199px
,#card1
and#card3
are positioned above the other cards. One way to handle this is by usingmedia queries
as many times as necessary across various screens.- or, you could update
@media screen and (max-width: 768px)
to something like@media screen and (max-width: 80em)
so the design adapts the small screen style.
- or, you could update
-
Avoid using position: While positioning can be useful for precise placement, it often leads to writing more code than necessary. Try to minimize its use when possible.
Overall, your design closely mirrors the original. Great job!😊
I hope these tips help you. 😊 Happy coding! 💻
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