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

  • @Kelvin-Ariedi

    Submitted

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

    The design was simple and fun to do

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

    no challanges

    Dmino228 90

    @Dmino228

    Posted

    Great Work!

    You can center a div horizontally and vertically by assigning this styles to their parent element:

    display: flex;
    align-items: center; /* vertically */
    justify-content: center; /* horizontally */
    

    or

    display: grid;
    place-items: center;
    

    Marked as helpful

    0