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

Submitted

QR Code

P

@danyelvarejao

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

Bader Idris 2,900

@Bader-Idris

Posted

You can set the container in the middle of the screen whatever user changes it when you add these properties to it in CSS:

.container {
  display: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

the new feature is transform, it has many lovely properties you can discover, I personally love it. Hope it's useful

Marked as helpful

0

P

@danyelvarejao

Posted

@Bader-Idris

Do you think this is better than display: flex, justify-content: center, align-items: center?

On what occasion would I use the way you said? I couldn't understand well

Thanks for review.

0
Bader Idris 2,900

@Bader-Idris

Posted

@danyelvarejao you can use it when you add some tricky elements vertically as tranformX() or horizontally as transformY, when having a parent element and its children, the one child, the better

Marked as helpful

0
P

@danyelvarejao

Posted

@Bader-Idris

Got it, thanks for the tip. 😊

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord