Design comparison
SolutionDesign
Solution retrospective
how to make mobile size
Community feedback
- @mehalimesPosted 10 months ago
Use media queries
Marked as helpful1 - @kevinfreitasv80Posted 10 months ago
Where the QR Code?
Marked as helpful0@petersannyPosted 9 months ago@kevinfreitasv80 i don't know why the QR code is not showing can you help me out?
0@kevinfreitasv80Posted 9 months ago@petersanny You need to put the correct QR Code path for the
img
tagexample
- imgs/qrcode.jpg
- index.html
- styles.css
In
img
tag:<img src="./imgs/qrcode.jpg" />
0 - @kyusufmPosted 10 months ago
For this case i don't think we need a mobile size, since the card size probably 250-ish but if you want to create different style for the mobile you can add media query in
/*your current css*/ /* add this below*/ @media (max-width: 375px) { /* Styles for screens with a width of 375 pixels or less */ }
For the solution, it should be better if you put it live on vercel or netlify.
Marked as helpful0
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