Profile card component

Solution retrospective
One more project. I couldn't get the background position correctly. I think it was supposed to have two backgrounds, one on top of the other, but I tried completing the challenge with only one.
Please if you have any tips on how to get it right, feel free to leave me a comment :)
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Zy8712
Your project looks pretty good. Currently the way you have your background set up, the single image you selected is being repeated multiple times.
If you want to use both circles and position them you can do something along the lines of:
background-color: var(--theme-dark-cyan); background-image: url("./images/bg-pattern-top.svg"), url("./images/bg-pattern-bottom.svg"); background-repeat: no-repeat, no-repeat; background-position: right 52vw bottom 35vh, left 48vw top 52vh; /* top img is offset 52 percent of the vw from the right and offset 35 of the vh from the bottom*/ /* bottom img is offset 48 percent of the vw from the left and offset 52 of the vh from the top*/
Hope you find this useful 👍
Marked as helpful
Join 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