CSS Grid, Baby Steps
Now that you understand the basic terminologies, like an adventurous kid, let’s get kicking!
We'll cover the following...
How do you Define a Grid?
Just like Flexbox, everything begins with a one-liner. display: grid
or display:inline-grid
for an inline version.
For example, to make a certain div
a grid container, do this:
div {
display: grid;
}
How do You Create Columns and Rows?
A grid without columns and rows ...