1/* Answer to: "css grid vs flexbox" */
2
3/*
4 Grid is much newer than Flexbox and has a bit less browser
5 support. That’s why it makes perfect sense if people are
6 wondering if CSS grid is here to replace Flexbox.
7
8 To be exact:
9 1. Grid can do things Flexbox can’t do.
10 2. Flexbox can do things Grid can’t do.
11 3. They can work together: a grid item can be a flexbox container.
12 A flex item can be a grid container.
13
14 For more information on this topic, go to:
15 https://css-tricks.com/css-grid-replace-flexbox/
16*/
1/* Both flexbox and grid are based on this concept.
2Flexbox is best for arranging elements in either a single row,
3or a single column. Grid is best for arranging
4elements in multiple rows and columns.
5The justify-content property determines how the extra space of the
6flex-container is distributed to the flex-items. */