Design comparison
SolutionDesign
Solution retrospective
I try to make a animation of the cars,but i dont very like the result
Community feedback
- @0xabdulkhaliqPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
CSS 🎨:
- We want to Use
min-height: 100vh
instead ofheight
for<div id="box-container">
.
- Setting the
height
to100vh
may result in the component being cut off on smaller screens, such as a mobile phone in landscape orientation.
- So change, the following style rule
#box-container { height: 100vh; }
- To this,
#box-container { min-height: 100vh; }
I hope you find it helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful1
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