Design comparison
SolutionDesign
Solution retrospective
Practicing frontend design! Working on understanding more of flexbox
Community feedback
- @Juveria-DalviPosted about 3 years ago
Wrap div with class attribution in
<footer> <div class="attribution"> .... </div> </footer>Marked as helpful1@vanzasetiaPosted about 3 years ago@juuveria You can just swap the
div
withfooter
tag 😉.Marked as helpful0 - @vanzasetiaPosted about 3 years ago
👋Hi Gavin Loo!
I have some feedback on this solution:
- Don't use design image size as your breakpoint for
@media
query. You should make sure that your website looks great on any screen size. - For any decorative image, you should leave the
alt=""
and addaria-hidden="true"
orrole="presentation"
to make sure all screen readers ignore those images. In this case, all the car icons are decorative images. - Only use one
h1
for every page. I recommend to change allh1
toh2
. - The
Learn More
button should be a anchor tag, notbutton
. In real website, it will navigate the user to certain page. - Use
box-sizing: border-box
for every element, to prevent unexpected behavior. Always add this CSS on every project that you create.
* { box-sizing: border-box; }
That's it! Hopefully this is helpful!
Marked as helpful0@rawsashimi1604Posted about 3 years ago@vanzasetia Hey Vanza, thank you for your advice!
0 - Don't use design image size as your breakpoint for
- @hardy333Posted about 3 years ago
Hey, website looks super good on desktop but one issue is that it is not mobile responsive.
- Try to always write mobile responsive css.
- I suggest to watch this video to start learning how to use media queries.
3
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