Responsive card using CSS flex

Solution retrospective
My progress in the development world
I pride myself on having the ability to create useful and beautiful web components from scratch with little help.
What I would do differently next time is to use some framework to streamline the process and make it more scalable.
What challenges did you encounter, and how did you overcome them?Responsive card
My biggest challenge was to create a card that could be adapted to all devices.
I overcame it with media queries
What specific areas of your project would you like help with?I need more help in CSS Flex and CSS Grid, and responsive.
Please log in to post a comment
Log in with GitHubCommunity feedback
- Account deleted
I noticed some areas where your HTML and CSS code can be improved to make it more efficient:
HTML:
-
Using the article tag:
- Instead of using the main tag as a container for the card, use the article tag and give it the class
global_card
. You can leave the main tag unchanged. - There is no need to use IDs in this project; classes are sufficient.
- Instead of using the main tag as a container for the card, use the article tag and give it the class
-
Improving accessibility with alt:
- Instead of using the picture tag, use the img tag and don't forget to add the alt attribute to improve accessibility.
-
Using h1 instead of h2:
- Since the main title is important, replace the h2 tag with an h1 tag.
- As for the div that contains the h2 and p tags, you can omit it because h2 and p are block elements by nature, so it's enough to add margin to the h2.
CSS:
-
Using max-width and min-height:
- In the body, add the properties
max-width: 100dvw;
andmin-height: 100dvh;
. - Instead of using the shorthand background property, use just
background-color
.
- In the body, add the properties
-
Improving responsiveness:
- Because you set the card's width to 80%, you might encounter responsiveness issues. It's better to use the
max-width
property, which will greatly help with making the design responsive. - According to the design file, the ideal width for the card is 320px, so use
max-width: 320px;
. - You won't need to use flexbox within the card or text wrap. You can also remove the media queries.
- Because you set the card's width to 80%, you might encounter responsiveness issues. It's better to use the
If you encounter any issues or don't understand something, feel free to let me know.
Marked as helpful -
Join 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