Design comparison
SolutionDesign
Solution retrospective
Any feedback or suggestion would be appreciated.
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @Saaqlainn 👋🏻
I've got some suggestions for the project.
- First things first, since you used two
@media queries
to put min and max width, when I open the website I see it in mobile viewport width. I have to change my screen size to see the desktop layout. What I suggest is to choose either build it with desktop first layoutmax-width
or mobile firstmin-width
. - For the car icons, add
aria-hidden="true”
, because they are for decoration. You can read more aboutaria-hidden
here. For example:
<img src="images/icon-luxury.svg" alt="" aria-hidden="true">
- Also, I suggest adding
transition: all 0.2s;
to the button and the links, this will make:hover
smoother.
I hope this was helpful 👨🏻💻 Other than that, you did a great job, well done. Cheers 👾
Marked as helpful2@SaaqlainnPosted about 3 years agohey! 👋@kens-visuals Thanks, man it was really helpful I didn't know about
aria-hidden=" true"
and I have made the changes you point. Thank you0@kens-visualsPosted about 3 years ago@Saaqlainn you're welcome 😇 I'd really appreciate if you could mark the comment as helpful 🙃
Marked as helpful0 - First things first, since you used two
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