3 Column Preview Card Component using Tailwind CSS

Solution retrospective
👋 Hello all,
I would appreciate some feedback on whether I have used the correct tag for card element or feedback on anything else would be helpful.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @vanzasetia
Hi, Deepak! 👋
Congratulations on finishing this challenge! 👏 Nice work on this challenge! 🙌
Your solution looks good on both landscape and portrait mobile views and on my desktop view! 👍
I would recommend writing your own styling for the newbie challenges to strengthen your CSS skill.
I have some feedback on this solution:
<img src="images/icon-suvs.svg" width=64 height=40 alt />
I would recommend wrapping the value of thewidth
andheight
properties with double quotes and making thealt=""
look like that.<img src="images/icon-suvs.svg" width="64" height="40" alt="" />
.- Every page should only contain one
h1
as an identifier of each page. So, change all the currenth1
toh2
, and like @AndyGlz01 has said earlier, if this is a full website, theh1
would exist somewhere else on the page. - Create a custom
:focus-visible
styling to any interactive elements (button
, links,input
,textarea
). This will make the users can navigate this website using keyboard (by usingTab
key) easily.
I hope this helps! Keep up the good work! 👍
Marked as helpful - @deepak-parmar
What is the best way to deal with
Page should contain a level-one heading
warning? I kept my<h1>
heading hidden, but it didn't work. - @AndyGlz01
Is perfect!!! Just add some margin-top, height of the cards!
Join 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