What is the difference between align-content and align-items?
What is the difference between align-content and align-items?
4 Replies
When it comes to flexbox
It is explained well here https://css-tricks.com/snippets/css/a-guide-to-flexbox/. It's in regards to how flex-wrap is handled.
align-content handles rows of content the same as how align-items handles items in a single row
Chris Coyier
CSS-Tricks
A Complete Guide to Flexbox | CSS-Tricks
Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and the child elements (the flex items). It also includes history, demos, patterns, and a browser support chart.
Thanks brother