CSS Flashcards
The difference between justify-content: space-between and justify-content: space-around
space-between aligns items with an even space between them while space-around does the same thing, but with a half space added on each end
The difference between justify-content and align-items
justify-content aligns items on the horizontal axis and align items on the cross (vertical) axis
How does flex-direction column affect justify-content and align-item?
Flex-direction: column causes justify-content to align items vertically and align-items to align items horizontally. (Opposite of their normal behavior)
The difference between align-items and align-content
align-content determines the spacing between lines, while align-items determines how the items as a whole are aligned within the container.