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

All comments

  • @BryanhSantos

    Submitted

    What are you most proud of, and what would you do differently next time?

    none

    What challenges did you encounter, and how did you overcome them?

    The difficulty I encountered was how to efficiently centralize the content of the div.

    What specific areas of your project would you like help with?

    CSS, div

    @letsGetToCode

    Posted

    Acho que não há muito a apontar para o projeto, bom trabalho!

    Normalmente para centrar o conteúdo das div utilizo flexbox. Um exemplo:

    <div class="container">
        conteudo
    </div>
    
    .container {
     width: 200px;
     align-items: center;
     justify-content: center
    }
    

    Lembrando que se flex-direction: column align-items interfere no eixo X e justify-content no eixo Y. Se flex-direction: row esses comandos alterarão os eixos Y e X respectivamente.

    0