Design comparison
Community feedback
- @correlucasPosted about 2 years ago
๐พHi @gmqrk247, congrats 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:
To add the circles (bottom/top) in the background, the best way is by using
background-image
to manage it since adding them to thebody
you make sure it will be under everything, see the properties below and see that the comma inside each properties declare the single modification for each circle separated.body { background-color: hsl(185deg, 75%, 39%); background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg); background-repeat: no-repeat, no-repeat; background-position: top -500px left -400px, bottom -700px right -250px; display: grid; place-content: center; /* background: var(--dark-cyan); */ min-height: 100vh; font-size: var(--fs-body); }
โ๏ธ I hope this helps you and happy coding!
Marked as helpful0@gmqrk247Posted about 2 years ago@correlucas Thanks! This is helpful! I am so not good with these bg images and patterns here and there on the page, I always struggle adding them.
1@correlucasPosted about 2 years ago@gmqrk247 Since you do the first time will be a lot easier bro. Keep it up =)
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