Terminology
Before we dive into CSS Grid concepts, let’s cover some basic terminology.
Grid linesIt targets only Firefox browsers, so you can make CSS exceptions. You would use it for hacks, to make your site more functional. CSS Grid Layout is a game-changer for web developers. Learn more about CSS Grid and the CSS Grid Layout panel in Firefox.
The vertical and horizontal lines that divide the grid and separate the columns and rows.
Grid areaRectangular space surrounded by four grid lines. A grid area can contain any number of grid cells.
Grid trackThe space between two grid lines. This space can be horizontal or vertical
GutterThe space between rows and columns in a grid.
Grid containerThe container that holds the entire CSS grid. It will be the element that has thedisplay: grid
or display: inline-grid
property on it.
Any element that is a direct child of a grid container.
Got it? Let's move on to creating our first grid with CSS Grid Layout.
Terminology
Before we dive into CSS Grid concepts, let’s cover some basic terminology.
Grid linesFirefox Css Reddit
The vertical and horizontal lines that divide the grid and separate the columns and rows.
Grid areaRectangular space surrounded by four grid lines. A grid area can contain any number of grid cells.
Grid trackFirefox Css Rust
The space between two grid lines. This space can be horizontal or vertical
GutterThe space between rows and columns in a grid.
Mozilla Firefox Start Page
Grid containerFirebug
The container that holds the entire CSS grid. It will be the element that has thedisplay: grid
or display: inline-grid
property on it.
Firefoxcss Store
Grid itemAny element that is a direct child of a grid container.
Got it? Let's move on to creating our first grid with CSS Grid Layout.