Movatterモバイル変換


[0]ホーム

URL:


  1. Веб-технологии для разработчиков
  2. CSS: каскадные таблицы стилей
  3. Руководство по CSS
  4. Properties
  5. grid-area

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

grid-area

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨октябрь 2017 г.⁩.

CSS-свойствоgrid-area - этосокращённая форма записи для свойствgrid-row-start,grid-column-start,grid-row-end иgrid-column-end. Определяет размер и местоположение грид-элемента в пределахgrid row. Задаёт краягрид-области грид-элемента.

css
/* Ключевые слова */grid-area: auto;grid-area: auto / auto;grid-area: auto / auto / auto;grid-area: auto / auto / auto / auto;/* <custom-ident> значения */grid-area: some-grid-area;grid-area: some-grid-area / another-grid-area;/* <integer> && <custom-ident>? значения */grid-area: some-grid-area 4;grid-area: some-grid-area 4 / 2 another-grid-area;/* span && [ <integer> || <custom-ident> ] значения */grid-area: span 3;grid-area: span 3 / span some-grid-area;grid-area: 2 span / another-grid-area span;/* Global values */grid-area: inherit;grid-area: initial;grid-area: unset;

Если заданы четыре значения<grid-line> , то первое значение определяетgrid-row-start , второе значение -grid-column-start , третье значение -grid-row-end и четвёртое значение -grid-column-end.

Еслиgrid-column-end опущено, аgrid-column-start в значении<custom-ident>,grid-column-end устанавливается в это значение<custom-ident>; иначе оно устанавливается в значениеauto.

Когдаgrid-row-end опущено, аgrid-row-start в значении<custom-ident>, тоgrid-row-end устанавливается в это значение<custom-ident>; иначе оно устанавливается в значениеauto.

Когдаgrid-column-start опущено, аgrid-row-start в значении<custom-ident>, все четыре свойства длинной записи устанавливаются в это значение, иначе они устанавливаются в значениеauto.

Свойство grid-area также может быть установлено в значение<custom-ident> , которое действует, как имя области. В дальнейшем разместить область в гриде по имени можно с помощью свойстваgrid-template-areas.

Начальное значениекак и у каждого из подсвойств этого свойства:
Применяется кэлементы сетки и абсолютно-позиционированные блоки, находящиеся в сеточном контейнере
Наследуетсянет
Обработка значениякак и у каждого из подсвойств этого свойства:
Animation typediscrete

Синтаксис

Значения

auto

- ключевое слово, говорящее о том, что свойство не вносит никаких изменений в размещение грид-элемента. На элемент действует авторазмещение или размер элемента по умолчанию1.(то есть, элемент занимает одну ячейку грид-сетки в заданном направлении)

<custom-ident>

если есть именованная линия с именем '<custom-ident>-start'/'<custom-ident>-end', то грид-элемент привязывается к первой из таких линий.

Примечание:Именованные грид-области автоматически генерируют неявные именованные линии с именами подобного формата, поэтому записьgrid-area: foo; выберет начальный/конечный край этой именованной грид-области (если, конечно, другая линия с именемfoo-start/foo-end не была явно определена раньше).В противном случае, значение расценивается, как если бы число1 было задано вместе с<custom-ident>.

<integer> && <custom-ident>?

Contributes thenth grid line to the grid item's placement. If a negative integer is given, it instead counts in reverse, starting from the end edge of the explicit grid.If a name is given as a<custom-ident>, only lines with that name are counted. If not enough lines with that name exist, all implicit grid lines are assumed to have that name for the purpose of finding this position.An<integer> value of0 is invalid.

span && [ <integer> || <custom-ident> ]

Contributes a grid span to the grid item's placement such that the corresponding edge of the grid item's grid area isn lines from the opposite edge.If a name is given as a<custom-ident>, only lines with that name are counted. If not enough lines with that name exist, all implicit grid lines on the side of the explicit grid corresponding to the search direction are assumed to have that name for the purpose of counting this span.If the<integer> is omitted, it defaults to1. Negative integers or 0 are invalid.

Formal syntax

grid-area =
<grid-line>[ /<grid-line>]{0,3}

<grid-line> =
auto|
<custom-ident>|
[[<integer [-∞,-1]>|<integer [1,∞]>]&&<custom-ident>?]|
[span&&[<integer [1,∞]>||<custom-ident>]]

Example

HTML content

html
<div>  <div></div>  <div></div>  <div></div></div>

CSS content

css
#grid {  display: grid;  height: 100px;  grid-template: repeat(4, 1fr) / 50px 100px;}#item1 {  background-color: lime;  grid-area: 2 / 2 / auto / span 3;}#item2 {  background-color: yellow;}#item3 {  background-color: blue;}

Спецификации

Specification
CSS Grid Layout Module Level 2
# propdef-grid-area

Совместимость с браузерами

Смотрите также

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp