QR Code Component

Solution retrospective
How do I make it so that this website looks good on both mobile and pc?
Should I be using px as a measurement?
How can I make my html and/or css less "messy"
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Fransuelton
Hello, congratulations on completing the challenge! 🥳✨
Answering your questions:
1.To make the content suitable for both devices, simply center it on the page. This challenge does not require the application of responsiveness.
2.Yes, that's fine. I believe it's a personal matter and preferred. I, for example, use the unit of measure "rem" in my projects.
3.Looking at your code, in my opinion, in HTML, you could put the sentences inside the div with the
container
class and use the paragraph tag<p>
for each of them. In CSS, to centralize, you can use the propertiesleft: 50%
,top: 50%
andtransform: translate(-50%, -50%)
. In addition, you can replace the property "position: relative" withposition: absolute
. You can also remove the properties "align-items: center" and "margin-left: 800px; margin-top: 200px;", as they are no longer needed to center the element.📚I recommend studying about flexbox, a very important concept that will greatly facilitate stylization in CSS. Mozilla Basic concepts of flexbox
In the end, you completed the challenge and did a good job. Keep it up and don't lose focus!😁💪
If you get confused or have any questions, just ask! Hope this helps. Good luck! 🚀💻
Marked as helpful - @IlyasSoe
Hello ! nice work !
use in
body
the flexbox property or grid to center will align the card in the center (in both axis) instead of the margins in.container
.e.g :
body { min-height: 100vh; } .container { display : flex; align-items: center; justify-content: center; }
for more details : Click me
Marked as helpful
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