Design comparison
Community feedback
- @Islandstone89Posted 9 months ago
Hi there. Well done on finishing this challenge! I have a few tips I hope you find helpful :)
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 the "main" section of a page. Change.container
into a<main>
. -
The alt text must also say where it leads(frontendmentor.io).
CSS:
-
Remove the width on the card. Instead, give it a
max-width
of around20rem
, to prevent it from getting too wide on larger screens. -
Since all of the text should be centered, you only need to set
text-align: center
on the body, and remove it elsewhere. The children will inherit the value.
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