Design comparison
Solution retrospective
This is my first project on Frontend Mentor, and my first attempt to creating anything using HTML & CSS. All feedback is welcome, and sharing best practices with me will be greatly appreciated.
Many thanks!
Community feedback
- @AdrianoEscarabotePosted about 2 years ago
Hi Shha5, how are you? Welcome to the front-end mentor community! I really liked the result of your project, but I have some tips that I think you will enjoy:
To align some content in the center of the screen, always prefer to use
display: flex;
it will make the layout more responsive!body { margin: 0; padding: 0; display: flex; align-items: center; flex-direction: column; justify-content: center; min-height: 100vh; }
You have used <br> , using <br> is not only bad practice, it is problematic for people who navigate with the aid of screen reading technology. Screen readers may announce the presence of the element. This can be a confusing and frustrating experience for the person using the screen reader. You can read more in MDN.
The rest is great!
I hope it helps... 👍
Marked as helpful1@Shha5Posted almost 2 years ago@AdrianoEscarabote Thank you very much for your feedback! It is very helpful, I will use your advice for my next project :)
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