Responsive website using CSS Flexbox

Solution retrospective
Any feedback would be greatly appreciated!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @dewslyse
Hello Clint 👋 ! Congrats on your submission. Well done!
A few things to note.
-
You may want to take a look at the responsiveness of your card. Your elements overflow their containers as you move from 1024px to 1440px. Also at
@media (max-width: 375px)
, your submission shows the desktop view. -
You html has some duplicate id selectors.
id="learnmore"
. Unlike class selectors, id selectors are unique i.e. a specific id can only be used once on a page. Consider changing#learnmore
to.learnmore
.
Marked as helpful -
- P@palgramming
You need to remove the
height
off your cards and then off of your main container. Then you need to control the height of the paragraph in the cards to allow the buttons to line up across the cardsMarked 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