Design comparison
Solution retrospective
60 bucks/year for audiobooks and music??? Which service is this?
But seriously, background images, patterns and little wavy blobs here and there are the bane of my existence. I've spent nearly an hour to display them on the page and I am not sure if the solution is good or not.
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @gmqrk247, Congratulations on completing this challenge!
I saw your solution preview site and I think it's already really good. Here’s some tips for you to improve it:
1.Its not so good that you used
overflow: hidden
for the whole content, in this case this property is making the content get cropped when the component gets tiny. Instead of usingoverflow
to make the rounded borders useborder-radius
for each card.2.Save your time using a CSS RESET to remove all default settings that are annoying as the margins, paddings, decorations and optimize it making easier to work,see the article below where you can copy and paste this css code cheatsheet: https://piccalil.li/blog/a-modern-css-reset/
✌️ I hope this helps you and happy coding!
Marked as helpful0 - @hyrongennikePosted about 2 years ago
Hi @gmqrk247,
Nice on completing the challenge
Another way is to remove the header element and add it as a background image like below.
body { background: #eaf0ff; background-image: url("https://fancy-gnome-48254c.netlify.app/images/pattern-background-mobile.svg"); background-repeat: no-repeat; background-size: 100% 50%; background-position: center top; }
Marked as helpful0
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