Created by Zankevich Anna
CSS Grid layouts are definitely one of the most exciting developments in CSS for years.
It is a 2-dimensional system, meaning it can handle both columns and rows, unlike flexbox which is largely a 1-dimensional system.
The lines between columns are called column lines.The lines between rows are called row lines.
A grid cell is the smallest unit on a grid. Conceptually it is like a table cell.
The total space surrounded by four grid lines. A grid area may be comprised of any number of grid cells. Here's the grid area between row grid lines 1 and 3, and column grid lines 1 and 3.
Here's the grid track between the second and third row grid lines.
The spaces between each column/row are called gaps.
Fr is a fractional unit and 1fr is for 1 part of the available space.
The grid-template-areas property specifies areas within the grid layout. You can name grid items by using the grid-area property, and then reference to the name in the grid-template-areas property.
______
Specifies what grid area the element is placed within