Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

PROFILE CARD COMPONENT | RESPONSIVE | HTML CSS

Jarrianโ€ข 150

@godkingjay

Desktop design screenshot for the Profile card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Anything I should fix or improve?

Community feedback

Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

๐Ÿ‘พHello Jarrian, congratulations for your solution!

Your solution seems really good, I saw the code you've used to position the circles behind the card, there's a better way to do it, note that your background isn't scaling correctly.

My advice for your is by doing the import of both images using the background-image inside the body and giving position for which separately using the , to declare the position for the top and bottom circles. See the code below:

 body {
    background-image: url(./images/bg-pattern-top.svg) , url(./images/bg-pattern-bottom.svg);
    background-size: cover;
    background-position: top -390px left -437px, bottom -478px right -370px;
    background-repeat: no-repeat;
}

Hope it helps and happy coding!

Marked as helpful

1

Jarrianโ€ข 150

@godkingjay

Posted

@correlucas thank you for the advice

0

Please log in to post a comment

Log in with GitHub
Discord logo

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