Design comparison
Community feedback
- @Islandstone89Posted 29 days ago
HTML:
-
Every webpage needs a
<main>
that wraps all of the content, except for<header>
andfooter>
. This is vital for accessibility, as it helps screen readers identify a page's "main" section. Wrap the card in a<main>
. -
Do not include words like "image" in the alt text. Screen readers start announcing images with "image", so an alt text of "QR code image" would be read like this: "image, QR code image". Also, the alt text must say where it leads(the frontendmentor website). A good alt text would be "QR code leading to the Frontend Mentor website."
-
.attribution
should be a<footer>
, and you should use<p>
for the text inside. Make sure the<footer>
is outside of the main - they should both be direct children of thebody
.
CSS:
-
Including a CSS Reset at the top is good practice.
-
I recommend adding a bit of
padding
, for example16px
, on thebody
, to ensure the card doesn't touch the edges on small screens. -
Remove
max-width
andmin-width
onbody
, as none are needed. -
To center the card horizontally and vertically, with space between
<main>
and<footer>
, I would use Flexbox on the body:
display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100svh; gap: 2rem;
-
Remove the margin on the card - it is already centered using Flexbox.
-
Remove the
width
andheight
inpx
on the card. We rarely want to give a component a fixed size, as we want it to grow and shrink according to the screen size. -
We do want to limit the width of the card, so it doesn't get too wide on larger screens. To solve this issue, give the card a
max-width
of around20rem
. -
font-size
must never be in px. This is a big accessibility issue, as it prevents the font size from scaling with the user's default setting in the browser. Use rem instead. -
Setting the
font-size
to10px
makes the text hard to read, so adjust it to a higher number. -
Paragraphs have a default value of
font-weight: 400
, so there is no need to declare it. -
Remove
text-align: center
on.attribution
- since you have set text to be centered on thebody
, all of its descendants will inherit the value. -
On the image, remove the fixed width in
px
. Instead, changedisplay: inline-block
todisplay: block
and addmax-width: 100%
- the max-width prevents it from overflowing its container. Without this, an image would overflow if its intrinsic size is wider than the container.max-width: 100%
makes the image shrink to fit inside its container. Removemargin-top
andjustify-self
- the latter property needs adisplay: flex
to work, which is not needed here. I would also increase theborder-radius
a bit. -
To create the space between the image and the edge of the card, set
padding
on all 4 sides of the card:padding: 16px;
.
Marked as helpful1@Ahmed-NafrawyPosted 29 days agoI didn't expect this response! Ouh than you so much for your insights and effort, i will do as you said and I will reupload it .
You really don't know how thankful I am! And I wish you do this in any project I post, as I am learning right now and it would be much of a help if I listened to some professional like you
Thank you again 💓 @Islandstone89
1@Islandstone89Posted 29 days ago@Ahmed-Nafrawy Glad to help :) You don't have to re-upload the solution, you only need to update your repo.
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