--- title: grid-gap slug: Web/CSS/grid-gap translation_of: Web/CSS/gap ---
A propriedade CSS grid-gap
é uma propriedade de taquigrafia para {{cssxref("grid-row-gap")}} e {{cssxref("grid-column-gap")}} especificando os canais entre as linhas de grelha e as colunas.
/* One <length> value */ grid-gap: 20px; grid-gap: 1em; grid-gap: 3vmin; grid-gap: 0.5cm; /* One <percentage> value */ grid-gap: 16%; grid-gap: 100%; /* Two <length> values */ grid-gap: 20px 10px; grid-gap: 1em 0.5em; grid-gap: 3vmin 2vmax; grid-gap: 0.5cm 2mm; /* One or two <percentage> values */ grid-gap: 16% 100%; grid-gap: 21px 82%; /* Global values */ grid-gap: inherit; grid-gap: initial; grid-gap: unset;
{{cssinfo}}
This property is specified as a value for <'grid-row-gap'>
followed optionally by a value for <'grid-column-gap'>
. If <'grid-column-gap'>
is omitted, it’s set to the same value as <'grid-row-gap'>
.
<'grid-row-gap'>
and <'grid-column-gap'>
are each specified as a <length>
or a <percentage>
.
<length>
<percentage>
{{csssyntax}}
<div id="grid"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div>
#grid { display: grid; height: 200px; grid-template: repeat(3, 1fr) / repeat(3, 1fr); grid-gap: 20px 5px; } #grid > div { background-color: lime; }
{{EmbedLiveSample("Example", "100%", "200px")}}
Especificação | Estado | Comentário |
---|---|---|
{{SpecName("CSS3 Grid", "#propdef-grid-gap", "grid-gap")}} | {{Spec2("CSS3 Grid")}} | Definição inicial |
{{Compat("css.properties.grid-gap")}}