Design comparison
Solution retrospective
html body and main tags, specifically how to get rid of the vertical scroll bar. I would also appreciate any other feedback such as accessibility features, HTML syntax improvement, ETC.
Thanks in advance
Community feedback
- @hyrongennikePosted about 2 years ago
Hi,
Congrats on submitting your first solution for the challenge
Just a few small suggestions. instead of a percentage for the width of the card maybe use
max-width: 350px;
you can adjust the width as need. Also very important remove the height from the card it causes text to overflowand lastly instead of adding
min-height: 90vh
on the body add the following on the main tag center the child elements.main { position: relative; height: inherit; display: flex; justify-content: center; align-items: center; min-height: 100%; }
Hope that helps, let me know if you have any other questions
Marked as helpful2@smarko-webPosted about 2 years ago@hyrongennike Thank you for your feedback, I did the improvements that were recommended.
Another concern that popped up when I was sharing this 'project', is when you open this site on mobile, using different browsers, each of them renders the project uniquely. How would I resolve this issue(should I be overly concerned as a beginner)?
0
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