Design comparison
Solution retrospective
Hello Everybody. Any feedback on this solution will be appreciated.
Community feedback
- @FluffyKasPosted almost 3 years ago
Hiya,
Your solution looks pretty good ^^ There's a few things I noticed where you may be able to improve this a tiny bit.
-
Your border-radius is different in mobile and desktop view. Not a big issue, it's just a matter of taste, I suppose.
-
Some top and bottom margin would look nice in mobile view so the component doesn't touch the side of the screen.
-
You could wrap the attribution in a
footer
. -
Lastly (in this is the only really important thing), do not set your font-size in px. If a user would like to change the default font-size in their browser, they won't be able to do so. Use relative units that scale with the changes. :)
Marked as helpful1@JJOosthuizenPosted almost 3 years agoHi @FluffyKas ,
Thanks for the feedback. I didn't even realize I have 2 different
border-radius
sizes. I'll definitely play around more with the margins and add the footer.0 -
- @GitHub-dev12345Posted almost 3 years ago
In this code:- You change the div tag to Footer tag
<div class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="">JJ Oosthuizen</a>. </div>to
<footer class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="">JJ Oosthuizen</a>. </footer>1 - @NaveenGumastePosted almost 3 years ago
Hay ! Jacques Good Job on challenge
These below mentioned tricks will help you remove any Accessibility Issues
-> Add Main tag after body
<main class="container"></main>
-> Learn more on accessibility issues
If this comment helps you then pls mark it as helpful!
Have a good day and keep coding 👍!
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