@audinastggSubmitted over 2 years ago
Here my solution for profile card component, feel free to give some feedback on my code and mark any mistakes. Thank you
Here my solution for profile card component, feel free to give some feedback on my code and mark any mistakes. Thank you
Other than a lack of spacing near the stats section at the bottom of the card, you did great! One cool tip: to center the card, you can use grid or flexbox:
html, body {
height: 100%
}
body {
display: flex;
justify-content: center;
align-items: center;
}