While building this project I found difficulties in positioning div,elements and paragraphs. I am unsure of how to position heading right below the QR code image where the text and image are symmetric .
Des2Dev
@Des2DevAll comments
- @bisu22Submitted over 2 years ago@Des2DevPosted over 2 years ago
Hi @bisu22,
- you don't have a CSS folder in GitHub. Therefore you can either create a new folder and place your
style.css
file in that folder.
OR
- you can get rid of
css/
path in your link, like this<link rel="stylesheet" href="style.css">
.
and same rule to your
img
element,<img src="image-qr-code.png" alt="QR code">
. always try to add some text toalt=" "
attribute.I think this feedback will helpful, and best wishes for your upcoming challenges.
Marked as helpful0 - you don't have a CSS folder in GitHub. Therefore you can either create a new folder and place your
- @labisigloriaSubmitted over 2 years ago
This is my first ever solution to a frontend mentor challenge, i had problems with creating the media queries for the challenge, i'm not even sure if the media query code i wrote is right according to the challenge, Please i'll appreciate a response on that and any other addition i should have made concerning my code.
@Des2DevPosted over 2 years agoHi ! you did good, but there are some small changes you can do to make it more good.
-
you don't need media query
@media
in this challenge. Remove the media query. -
And also use flexbox to center the card, and remove the margin properties from body.
-
And always try to use
min-height
property, notheight
.
I thin this comment will helpful. and Good luck to your upcoming challenges.
Marked as helpful0 -