Design comparison
Solution retrospective
Hello Everyone. This challenge was quite difficult for me, due to the viewing icon of the image, but I was able to come up with this solution. Any feedback would be appreciated.
Community feedback
- @PhoenixDev22Posted almost 3 years ago
Hello @JJOosthuizen ,
I have some suggestions regarding your solution :
-
Anything with a hover style in a design means it's interactive. you need to add an interactive element around the image and
Equilibrium #342
andJules Wyvern
. -
For any decorative images, each
img
tag should have emptyalt=""
andaria-hidden="true"
attributes to make all web assistive technologies such as screen reader ignore those images inalt="alt="clock", alt="ethereum"
. -
the link should be wrapping the original image and either have
Sr-only
text, anaria-label
oralt
text that says where that link takes you. -
The avatar's alt text shouldn't be only avatar. You can use
Jules Wyvern
as an alt text. -
text should never be in or spans alone. Use a meaningful element
-
You can use an unordered list
<ul>
forclass="container
and in each<li>
, there would be<img>
and<p>
-
nesting css selectors is really a good thing . Really important to keep css specificity as low/flat as possible. The best way to do that is single class selectors
-
You can give the card
max-width
instead ofwidth
.
Hopefully this feedback helps.
Marked as helpful1@JJOosthuizenPosted almost 3 years agoHello @PhoenixDev22 ,
Thank you for taking the time to look at this, giving feedback and pointing out where I can improve. I'll take this and improve on my solutions. 😁
1 -
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