Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Tried my best to recreate the design exactly.
What challenges did you encounter, and how did you overcome them?To set the QR picture exaclty in square format with accurate padding within the outer div.
What specific areas of your project would you like help with?How to make the div mobile friendly and at what extent I met the requirements of mobile friendliness ?
Community feedback
- @Nemesis-12Posted 8 months ago
You can use media queries in your CSS stylesheet to turn your websites to be responsive
This can be used for laptops/desktops and larger screens
@media (min-width: 1440px) { /* Your styling properties */ }
This can be used for any screens smaller than a laptop/desktop
@media (max-width: 1440px) and (min-width: 375px) { /* Your styling properties */ }
0
Please log in to post a comment
Log in with GitHubJoin 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