Basic CSS Grid Terminologies You Should Know
Let’s take a look at the CSS grid terminologies you absolutely have to know.
We'll cover the following...
What is a Grid Container?
Every website or application layout you make (or have seen) is essentially boxes placed within certain defined boundaries.
In very simple terms, a grid is just ‘lines’. Horizontal and vertical lines that define the placement of other design elements.
You’ll be familiar with this if you use design software such as Adobe Photoshop or Sketch.
In the context of the CSS Grid layout, a grid container is a parent that contains all the items in the grid. The Grid container defines the initial placement of the ...