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

  • @AltairCGS

    Posted

    To properly center your content to your page, you will want to add the following to your Body element (this method uses CSS Grid):

    body {
        min-height: 100vh;
        display: grid;
        place-content: center;
    }
    

    A little advice that they gave me before :3 I hope this helps! Keep up the good work!

    0