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

Responsive page using css Flexbox

@as90695

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I have used css flex box to create this reponsive website. I am currently facing issue while writing code for mobile viewport. If you have any suggestion them please DM me.

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

@as90695

Posted

@Bader-Idris thankyou for your feedback I will keep in mind.

0
Nabil 240

@Nabil-Nabil-Nabil

Posted

You need to change width of container 320px and border-radius 20px

/* parent-container */
.main {
    width: 320px;
    border-radius: 20px;
}

nice job bro 👌

0

@as90695

Posted

@Nabil-Nabil-Nabil thankyou very much. I will definitely keep this in mind.

1

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