Design comparison
Solution retrospective
Hi! I would appreciate it if you could review my code and give feedback. Your feedback is very important to me, thank you very much!!!
Community feedback
- @vanzasetiaPosted about 2 years ago
Hi, Raymond Fajiculay! 👋
Good to see you completing another challenge! 👏
It's great that you keep the specificity of the stylesheet as low as possible. Good job on this! 👍
One suggestion I have is to not change the
html
or the:root
font size. It can cause huge accessibility implications for those users with different font sizes or zoom requirements. I suggest reading this article by Josh Comeau where he writes about the problem of the 62.5% trick (and more!). Also, I recommend reading what an accessibility expert (Grace Snow) has said about it.I hope this helps! Happy coding!
Marked as helpful0@keyztrokeePosted about 2 years ago@vanzasetia Thank you very much, great help
0@keyztrokeePosted about 2 years ago@vanzasetia Hi again, I made some changes, would you mind taking a look if I did it right? Appreciate much. Thank you!
0@vanzasetiaPosted about 2 years ago@keyztrokee
Hello again, Raymond! 👋
Great job on improving the site! It's good that you are using
rem
without changing thehtml
font size.But, there are two things that you can still do to improve the site.
- First, use
rem
unit for thefont-size
value. I notice the font size for the.attribution
is still usingpx
unit. - Second, move the
font-family
to thebody
element. Most of the text elements such as paragraph and headings will inherit the font family from thebody
element. Also, sincehtml
can overwrite the user's setting, so it's best to usebody
element instead.
1@vanzasetiaPosted about 2 years ago@keyztrokee
Nothing is changed at
style.css
. The.attribution
's font size is still usingpx
unit and thefont-family
property is still at thehtml
element.1@keyztrokeePosted about 2 years ago@vanzasetia I change it 19 hours ago and push it to my GitHub but the changes won't show in netlify. Do you know why?
0@vanzasetiaPosted about 2 years ago@keyztrokee
It looks like the CSS is not the latest compiled code. It means that you need to recompile the Sass code. The latest changes in the
style/style.scss
does move thefont-family
to thebody
element.1 - First, use
- @VCaramesPosted about 2 years ago
**Hey @keyztrokee, your coding has definitely improved since the last challenge.
Some suggestions to improve you code:
-
The Section Element is being used incorrectly. A simple div will do for this challenge.
-
You want to play around with you media queries. Currently you card, after 800px, gets excessively large until the desktop view kicks in.
Happy Coding!
Marked as helpful0@keyztrokeePosted about 2 years ago@vcarames Hi again, I made some changes, would you mind taking a look if I did it right? Appreciate much. Thank you!
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