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

  • Zaraban6 70

    @Zaraban6

    Submitted

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

    a

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

    a

    What specific areas of your project would you like help with?

    I am new and I welcome any exercise that challenges me.

    @ChrisGMD20

    Posted

    You could center the QR card by using the absolute positioning and then fixing the top and left properties. something like:

    #qr-card { position: absolute; //so the card could be placed relative to the parent element, i.e., in this case the html page

    top: 50%; //so the card is shifted to half the page vertically from the top left:50%; //so the card is shifted to half the page horizontally from the left

    transform: translate(-50%, -50%) //so the card is shifted left and up half of its width and height for optimal centering }

    0