Design comparison
SolutionDesign
Solution retrospective
A responsive introductory section made with HTML and Css. Any suggestion or feedback is highly appreciated.
Community feedback
- @fidellimPosted about 3 years ago
Hi Nirban,
Great work on finishing the project!
Just a suggestion I would like to share:
- You can center the image you have on your component. So that as the screen size decreases, it just stays in the middle not on top. Adding
align-items:center
will do the job.
@media screen and (min-width: 600px) and (max-width: 1000px) main { display: flex; flex-direction: row; align-items: center; padding-top: 4rem; padding-bottom: 2rem; }
I hope it helps :)
1 - You can center the image you have on your component. So that as the screen size decreases, it just stays in the middle not on top. Adding
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