Responsive intro section with dropdown using CSS, JS, Grid and Flexbox
Design comparison
Solution retrospective
Any feedback is appreciated.
Community feedback
- @RoksolanaVeresPosted over 1 year ago
Hi! Your solution looks nice to me 🙂
There is one small issue with the background image which is easy to fix: right now when the screen shrinks, the image doesn't shrink proportionally but is cut off on the right side. To make it look better you should change the background-size property to contain (instead of cover) and set "background-position-x: center" at main .right.
Then at @media (max-width: 768px) do the same changes: main .right { background-size: contain; background-position: center; }
Marked as helpful1@Ryusuke66Posted over 1 year ago@RoksolanaVeres Hi, I'm glad you liked my solution, i fixed the issue that you mentioned, Thank you for bringing it to my attention.
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