Design comparison
Solution retrospective
Overall I found this project easy to build. The only thing I couldn't figure out was how to add the circles to the page without interfering with what's on the page, such as the navbar component. Hopefully, I figure it out down the line, but for now, I'm very pleased with the work that I did here. Any general feedback is always welcomed, or questions you may have.
Community feedback
- @AbelMuroPosted over 1 year ago
For the circles in the background, one thing I can recommend is using
position: absolute
andz-index: 1
to position the circles on the page. You can also use the universal selector and apply the properties below..* { position: relative , z-index: 2}
The selector above will ensure that all elements on the page will be on top of the circles, and so the circles will not interfere with the other elements on the page.
Hope this helps!
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