Design comparison
Solution retrospective
somehow completing this. what i need to do next is learn and practice more.
What challenges did you encounter, and how did you overcome them?centering the image, paddings/margins, aligning the table, changing the color of the numbers. to overcome i used inspect in firefox to get an idea of what to do next.
What specific areas of your project would you like help with?responsiveness, cleaning the html/css
Community feedback
- Account deleted
Hi, daderisme.
Good start on the challenge. I have a few things to mention that might help you out on your coding journey:
- Consider adding a
width
property to the#container
selector so that any content inside doesn't overflow. - Adjust the width value of the image to
100%
to ensure that it fits inside the container instead of overflowing. - Without using
margin
to center your content, you can add thedisplay: flex
property in yourbody
selector:
body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
For better accessibility and responsiveness on all screen sizes, use the
mobile-design.jpg
file to replicate the design for mobile screens.I hope this feedback is helpful for you. With that said, happy coding.
Marked as helpful0 - Consider adding a
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