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

  • SirKale 30

    @SirKale

    Submitted

    Hello! I am very new to coding and this was a little shaky for me since this is the first time I'm creating a website without any guidance or help. I am unsure if I did a great job because the border around the QR code and text isn't showing and the background is white. Wondering how I can do that? Please send me feedback about any mistakes in my code or things I can add and get better at. Thank you!

    Lydia 60

    @lydiadunning

    Posted

    Your background color is white because the background of your page is in the body element, and the body element's CSS is the same as the .container CSS.

    body{
        ...
        background-color: white;
        border: 1px solid white;
        ...
    }
    

    If you change the body's background color, you've got the right shape.

    Also, you don't need a border unless you can see one, border-radius works without it.

    Marked as helpful

    0