
Solution retrospective
Im proud that i took the time to work through the project, step by step
What challenges did you encounter, and how did you overcome them?The challenges i faced were: Centering the code component, making the image responsive, balancing the typography, creating subte shadow effects, mobile responsiveness, so he component adjusts to different screen sizes
What specific areas of your project would you like help with?Honestly, i think i need to take more time out to practise CSS, as some of the stuff, im familiar with, but this project has made me realise that i need to take some time out just to code, in this case CSS
Please log in to post a comment
Log in with GitHubCommunity feedback
- @MarziaJalili
Hats off to your project!
Some tips to keep in mind in your next projects:
- First, for centering the card, you could go with
grid
instead offlex
since it's much more simple.
Updated it to:
/* current code */ display: flex; flex-direction: column; align-items: center; justify-content: center; /* updated code */ display: grid; place-items: center;
-
Second, void using
px
units forfont-size
as it happens to cause some issues. Instead, userem
orem
units to make the web more responsive. -
The color of the heading is a darker one, bro. You can find the exact code of the colors in the
style-guide.md
file provided by the challenge. -
Lastly, in your next projects, considering filing all the images in one folder for a cleaner repo.
Have fun building up masterpieces!
Marked as helpful - First, for centering the card, you could go with
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