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

  • Ayodele Hassan• 90

    @Xtrum

    Submitted

    This is my first try after two weeks into HTML & CSS....!

    Building this project, I couldn't wrap my hands on "how to make the QR code image scale-down with the container"......... so, I kind of manipulate that with "property: relative;" in my CSS sheet.

    I am somewhat convince I didn't get it right and I will really appreciate any help to better my coding skill.

    CSS, Html

    #foundation

    3

    uchethecreator• 40

    @uchethecreator

    Posted

    Hi, you did really great for a beginner. You can center the container by using the css flexbox property. Here's how:

    body {
       width: 100%;
       min-height: 100vh;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
    }
    Good job!
    

    Marked as helpful

    0