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

card using html css

@amandalima1

Desktop design screenshot for the NFT preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I had difficulty placing the icons and positioning them next to the text

Community feedback

@M-its

Posted

Você pode usar flex containers para alinhar os elementos e definir espaços entre eles. Pode ser um pouco desafiador no começo, mas compensa o esforço. Substituindo um trecho do seu código ficaria assim:

antes

section{
    background-color: hsl(216, 50%, 16%);
    padding: 20px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
}

depois

section {
    width: 300px;
    background-color: hsl(216, 50%, 16%);
    padding: 20px;    
    border-radius: 15px;
    
    //muda o display da section para um container flexível 
    display: flex;

    //indica a direção do container como coluna (vertical)
    flex-direction: column;

    //define o espaçamento entre cada elemento da section
    gap: 1.6rem;

    //sombras 
    -webkit-box-shadow: 6px 7px 25px 0px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 6px 7px 25px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 6px 7px 25px 0px rgba(0, 0, 0, 0.19);
}

Parabéns por terminar mais um desafio 🚀

0

@NelPascual

Posted

Excellent work, congratulations for finishing the project. I saw that you did not develop the hover effect applied to the main image, if you need some guidance to implement it, I will gladly support you with any indication when you want.

Have a nice day.

0

@amandalima1

Posted

@NelPascual Yeah, I couldn't think of how to do that. I preferred to stop and try again later haha

0

@SadeeshaJayaweera

Posted

Congratulations on finishing the challenge & all the very best ✌️

0

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