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

  • @MAR2409

    Posted

    Hello, good job finishing the challenge! If you're familiar with Flexbox, you can use this as a reference

    <div class="center-qr-card"> <div class="qr-card"></div> </div>

    CSS Code will look like this

    .center-qr-card { display: flex; justify-content: center; align-items: center; height: 100vh; }

    The class of center-qr-card is specifically targeting the card itself to be centered on the page! I truly hope this helps!

    0