Movatterモバイル変換


[0]ホーム

URL:


  1. Glossary
  2. Grid lines

Grid lines

Grid lines are created anytime you use aCSS grid layout.

Example

In the following example there is a grid with three column tracks and two row tracks. This gives us 4 column lines and 3 row lines.

* {  box-sizing: border-box;}.wrapper {  border: 2px solid #f76707;  border-radius: 5px;  background-color: #fff4e6;  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-template-rows: repeat(3, 100px);}.wrapper > div {  border: 2px solid #ffa94d;  border-radius: 5px;  background-color: #ffd8a8;  padding: 1em;  color: #d9480f;}
html
<div>  <div>One</div>  <div>Two</div>  <div>Three</div>  <div>Four</div>  <div>Five</div></div>
css
.wrapper {  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-template-rows: 100px 100px;}

Lines can be addressed using their line number. In a left-to-right language such as English, column line 1 will be on the left of the grid, row line 1 on the top. Lines numbers respect thewriting mode of the document and so in a right-to-left language for example, column line 1 will be on the right of the grid. The image below shows the line numbers of the grid, assuming the language is left-to-right.

Diagram showing the grid with lines numbered.

Lines are also created in theimplicit grid when implicit tracks are created to hold content positioned outside of theexplicit grid, however these lines cannot be addressed by a number.

Placing items onto the grid by line number

Having created a grid, you can place items onto the grid by line number. In the following example the item is positioned from column line 1 to column line 3, and from row line 1 to row line 3.

* {  box-sizing: border-box;}.wrapper {  border: 2px solid #f76707;  border-radius: 5px;  background-color: #fff4e6;  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-template-rows: repeat(3, 100px);}.wrapper > div {  border: 2px solid #ffa94d;  border-radius: 5px;  background-color: #ffd8a8;  padding: 1em;  color: #d9480f;}
html
<div>  <div>Item</div></div>
css
.wrapper {  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-template-rows: 100px 100px;}.item {  grid-column-start: 1;  grid-column-end: 3;  grid-row-start: 1;  grid-row-end: 3;}

Naming lines

The lines created in theexplicit grid can be named, by adding the name in square brackets before or after the track sizing information. When placing an item, you can then use these names instead of the line number, as demonstrated below.

* {  box-sizing: border-box;}.wrapper {  border: 2px solid #f76707;  border-radius: 5px;  background-color: #fff4e6;  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-template-rows: repeat(3, 100px);}.wrapper > div {  border: 2px solid #ffa94d;  border-radius: 5px;  background-color: #ffd8a8;  padding: 1em;  color: #d9480f;}
html
<div>  <div>Item</div></div>
css
.wrapper {  display: grid;  grid-template-columns: [col1-start] 1fr [col2-start] 1fr [col3-start] 1fr [cols-end];  grid-template-rows: [row1-start] 100px [row2-start] 100px [rows-end];}.item {  grid-column-start: col1-start;  grid-column-end: col3-start;  grid-row-start: row1-start;  grid-row-end: rows-end;}

See also

Property reference

Further reading

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp