CSS Layout: Grid Flashcards

1
Q

CSS Variables

A

They allow for values to be assigned to a reusable variable name.
Variables are created and assigned to the :root of the document.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CSS Grid

A

2-dimensional system, meaning it can handle both columns and rows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Grid Container

A

The element on which display: grid is applied.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Grid Item

A

The children (i.e. direct descendants) of the grid container.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Grid Line

A

The dividing lines that make up the structure of the grid. They can be either vertical (“column grid lines”) or horizontal (“row grid lines”) and reside on either side of a row or column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Grid Cell

A

The space between two adjacent row and two adjacent column grid lines. It’s a single “unit” of the grid.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Grid Track

A

The space between two adjacent grid lines. You can think of them like the columns or rows of the grid.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly