Responsive CSS cards using HTML and CSS
- Live Site URL: Github Pages
I learned flex wrap makes the cards responsive without using media queries.
.cards-container {
font-size: 1rem;
flex-wrap: wrap;
justify-content: center;
gap: 1.25rem;
margin: 1.25rem;
}
- Semantic HTML5 Markup
- Custom properties (variables)
- Flexbox
- CSS Grid
- Mobile-first workflow
Scale on hover with transition
I took inspiration from this Responsive card UI with flexbox and hover effects Youtube video.