Design comparison
SolutionDesign
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.
COMPONENT MEASUREMENTS π:
- Use
min-height: 100vh
formain
instead ofheight: 100vh
. Setting theheight: 100vh
may result in the component being cut off on smaller screens, such as mobile devices in landscape orientation
- For example; if we set
height: 100vh
then themain
will have100vh
height no matter what. Even if the content spans more than100vh
of viewport.
- But if we set
min-height: 100vh
then themain
will start at100vh
, if the content pushes themain
beyond100vh
it will continue growing. However if you have content that takes less than100vh
it will still take100vh
in space.
.
I hope you find this helpful π Above all, the solution you submitted is great !
Happy coding!
1@lucavieiraPosted over 1 year agoThanks for the help, I'll review and make the necessary changes. Thank you for the explanation.
@0xAbdulKhalid
0@0xabdulkhaliqPosted over 1 year agoGlad you found it helpful @lucavieira ! π€
1 - @HeshamAbdelalemPosted over 1 year ago
Great Work π
Your code is very clean ;)
- the img tags got an alt attribute with fallback text :)
- the css file is amazing
- the media query also clean
- using css variables like a pro
- I really like your solution
keep going bro
1@lucavieiraPosted over 1 year agoThank you very much, I am very happy with the comment. @HeshamAbdelalem
1
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