Design comparison
Solution retrospective
This is my second project, i used sass just for fun. Please let me know what i should improve, thanks.
Community feedback
- @PhoenixDev22Posted almost 3 years ago
Hello @archie-k,
I have some suggestions regarding your solution:
-
Anything with a hover style in the design means it's interactive . You need to add an interactive element around the image
Equilibrium #3429
andJules Wyvern
(in this challenge is an anchor tag<a>
) -
Images must have alternate text.
-
The images don't need filled
alt
. They are decorative images, so alt attribute should be left intentionally blank. You can optionally addaria-hidden
orrole presentation
to ensure the images are always ignored by screen readers ANDavatar's one andimage-equilibrium.jpg
should be empty and should be descriptive . Read more about decorative and informative images . -
You can simply use unordered list
<ul>
to wrapclass="nft-price-time"’and in each list item would have
<img >and
<p> `. -
You shouldn't have used
<hr>
you can useborder-top
property for the<div class="creator">
-
You can use more html semantic tags like
<figure><figcaption >
for the avatar part. -
Use
max-width:
insteadwidth
. -
You should use
em
andrem
units .Bothem
andrem
are flexible, scalable units which are translated by the browser into pixel values, depending on the font size settings in your design. Usingpx
won't allow the user to control the font size based on their needs. -
Add the hover effect on the image . (The eye image is missing)
Hopefully this feedback helps.
Marked as helpful1 -
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