Study Notes

Study Notes

  • Source
  • WebDesign
  • Javascript

›CSS Gird

Basic HTML and HTML5

  • Basic HTML and HTML5 Overview

Basic CSS

  • Basic CSS Overview

Applied Visual Design

  • Applied Visual Design Overview

Applied Accessibility

  • Applied Accessibility Overview
  • Image alt attribute
  • Headings
  • Semantic Elements
  • Visual Sense
  • Attributes Relative to the Keyboard

Responsive Web Design Principles

  • Responsive Web Design Principles Overview

CSS Flexbox

  • CSS Flexbox Overview
  • Flex Container
  • Flex Item

CSS Gird

  • CSS Grid Overview
  • Grid Container
  • Grid Item
  • Grid Areas
  • build-in function
  • Layout

Grid Areas

本文总结的是 CSS Grid 这一部分与 Grid Areas 相关的属性

grid-template-areas

You can group cells of your grid together into an area and give the area a custom name. Do this by using grid-template-areas on the container like this:

.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "advert content content"
    "footer footer footer";
}

The code above merges the top three cells together into an area named header, the bottom three cells into a footer area, and it makes two areas in the middle row; advert and content.

Note

Every word in the code represents a cell and every pair of quotation marks represent a row.

In addition to custom labels, you can use a period (.) to designate an empty cell in the grid.

grid-area

After creating an areas template for your grid container, you can place an item in your custom area by referencing the name you gave it. To do this, you use the grid-area property on an item like this:

.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "advert content content"
    "footer footer footer";
}

.item1 {
  grid-area: header;
}

This lets the grid know that you want the item1 class to go in the area named header. In this case, the item will use the entire top row because that whole row is named as the header area.


If your grid doesn't have an areas template to reference, you can create an area on the fly for an item to be placed like this:

item1 {
  grid-area: 1/1/2/4;
}

So the item in the example will consume the rows between lines 1 and 2, and the columns between lines 1 and 4.

← Grid Itembuild-in function →
  • grid-template-areas
  • grid-area
Copyright © 2019 罗惠东