Add grid-area CSS property

This commit is contained in:
David Storey 2015-12-07 15:55:10 -08:00
parent 0838dfcf1d
commit 187496dbc2

View file

@ -5445,6 +5445,13 @@
</value>
</values>
</entry>
<entry name="grid-area" restriction="identifier, integer" version="3.0" browsers="none" ref="http://www.w3.org/TR/css-grid-1/#propdef-grid-area" syntax="div { $(name): span 3; }">
<desc>Determine a grid items size and location within the grid by contributing a line, a span, or nothing (automatic) to its grid placement. Shorthand for 'grid-row-start', 'grid-column-start', 'grid-row-end', and 'grid-column-end'.</desc>
<values>
<value name="auto" version="3.0" browsers="all" />
<value name="span" version="3.0" browsers="all" />
</values>
</entry>
<entry name="grid-cell" restriction="string, enum" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-grid-layout/#grid-cell" syntax="#item1 { $(name): 'n'; }">
<desc>The grid-cell is valid on grid items and places the grid item inside the explicitly named grid cell.</desc>
<values>