Used Flexbox,Grid and Mobile View First approach

Solution retrospective
Any suggestion on writing CSS better?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @denielden
Hey Nazim, congratulations on completing the challenge! You did a great job 😉
Let me give you some little tips for optimizing your code:
- Tip of graphic design: with
font-family:" Big Shoulders Display ", cursive
the browser will use the Comics Sans font when it doesn't find the first font indicated (you can seen during loading)... for the designer it's a really awful font! I would rather replace it with afont-family:" Big Shoulders Display ", sans-serif
much more similar to the primary font. - add descriptive text in the
alt
attribute of the images - to avoid the jump that occurs when you mouse over the button, assign the same border to the button even in the normal state
- add
transition
on the element with hover effect - instead of using
px or %
use relative units of measurement likerem
-> read here
Hope this help! Happy coding 😁
- Tip of graphic design: with
- @Kamasah-Dickson
Your solution looks great on mobile. Great job there, keep coding👍
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