**Contact emails**
re...@igalia.com
**Spec**
https://www.w3.org/TR/css-grid-1/#gutters
**Summary**
Rename gutter properties to remove "grid-" prefix:
* grid-gap => gap
* grid-row-gap => row-gap
* grid-column-gap => column-gap
Note that column-gap already exists and is used by css-multicol.
The parsing needs to be updated as now the default value is "normal".
The old (prefixed) properties names will be kept working as aliases.
I'm just sending the intent because this is adding 2 new CSS properties
(gap and row-gap) and I'll need API owners approval to land the patch.
**Motivation**
This was resolved by the CSSWG past summer
(
https://github.com/w3c/csswg-drafts/issues/1696) and there isn't any
good reason to not doing it.
**Interoperability risk**
* Firefox: Public support
* Edge: Shipped
* Safari: No public signals
* Web developers: No signals
It's a small change, that adds 2 new CSS properties: gap and row-gap
(that already exist in the grid prefixed version).
Edge is already shipping this change, and Firefox is willing to
implement it too.
In addition, I'll take care to implement it on WebKit too and I don't
foresee any issue to get it accepted there.
**Compatibility risk**
The old properties will be kept as aliases so this won't break any content.
Even when the new initial value is "normal", for Grid Layout that's
resolved to 0px, so it won't cause any change.
**Ongoing technical constraints**
Talking about the CSS parser, it seems we cannot have 2 aliases for the
same property and column-gap has already -webkit-column-gap as alias.
Anyway we could implement the unprefixed properties as a shorthands,
which is what the spec actually states
(
https://drafts.csswg.org/css-align/#gap-legacy):
* grid-row-gap must be treated as a shorthand for the row-gap property
* grid-column-gap must be treated as a shorthand for the column-gap property
* grid-gap must be treated as a shorthand for the gap property
**Will this feature be supported on all six Blink platforms (Windows,
Mac, Linux, Chrome OS, Android, and Android WebView)?**
Yes.
**OWP launch tracking bug**
https://bugs.chromium.org/p/chromium/issues/detail?id=761904
**Link to entry on the Chrome Platform Status**
https://www.chromestatus.com/features/4986266210795520
**Requesting approval to ship?**
Yes.