Responsive image gallery in FlexBox
date
Nov 22, 2022
slug
responsive-images-with-flex
status
Published
tags
Bugfix
CSS
FlexBox
summary
type
Post
Background
I tried to add a responsive image gallery to my blog template project with the codes below:
Problem
But the width of the images were changed to fill the whole section unexpectedly.

Solution
There are two ways to fix that problem:
- Add
align-self: flex-start
to the image items rule
- Use
Grid
instead ofFlexBox
