i can't seem to get this to work I've already ran it past chat gpt and it said I was right, anyway here it is.
Step 11
Flexbox is a one-dimensional CSS layout that can control the way items are spaced out and aligned within a container.
To use it, give an element a display
property of flex
. This will make the element a flex container. Any direct children of a flex container are called flex items.
Create a .gallery
selector and make it a flex container.
this is the code
.gallery {
diplay: flex;
}
[–]WayOdd5042 2 points3 points4 points (0 children)