Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

NFT Preview Card Component

@ishanlearnsprog

Desktop design screenshot for the NFT preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

Kristine 310

@sn-tin

Posted

Congratulations on successfully finishing this challenge 🎉

I just have a few recommendations to help you improve your solution.

First, I noticed that the icons for clock and ethereum has been stretched. This is because the align-self default value is stretch. There are two ways to fix this:

Solution 1:

.imgp img {
  align-self: center;
}

Solution 2

.imgp {
    display: flex;
    gap: 5px;
    align-items: center;
}

Then, when hovering over the image, I think it would be best to have the cursor: pointer.

Nevertheless, the solution you submitted looks great! 😊

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

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