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

@AgustinR39

Desktop design screenshot for the Profile card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

@bccpadge

Posted

Hello @AgustinR39. Congratulations on completing this challenge!!🎉

I have few tips to improve your solution below.

To center your card in the middle of website, you can use Flexbox or CSS Grid

Flexbox

body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

CSS Grid

body{
display: grid;
place-content: center;
min-height: 100vh;
}

Here is my solution to the Profile card component

Hope this helps you and don't hesitate to reach out to me if you have any questions

2

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