Skip to content

Commit 5b36fd0

Browse files
committed
[css-grid] Added 'grid-auto' to the changes section.
1 parent 393087b commit 5b36fd0

3 files changed

Lines changed: 2833 additions & 13 deletions

File tree

css-grid/Overview.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</a></p>
4343
<h1 class="p-name no-ref" id=title>CSS Grid Layout Module Level 1</h1>
4444
<h2 class="no-num no-toc no-ref" id=subtitle><span class=content>Editor's Draft,
45-
<span class=dt-updated><span class=value-title title=20130816>16 August 2013</span></span></span></h2>
45+
<span class=dt-updated><span class=value-title title=20130819>19 August 2013</span></span></span></h2>
4646
<div data-fill-with=spec-metadata><dl><dt>This version:<dd><a class=u-url href=http://dev.w3.org/csswg/css-grid/>http://dev.w3.org/csswg/css-grid/</a><dt>Latest version:<dd><a href=http://www.w3.org/TR/css3-grid-layout/>http://www.w3.org/TR/css3-grid-layout/</a><dt>Editor's Draft:<dd><a href=http://dev.w3.org/csswg/css-grid/>http://dev.w3.org/csswg/css-grid/</a>
4747
<dt>Feedback:</dt>
4848
<dd><a href="mailto:www-style@w3.org?subject=%5Bcss-grid%5D%20feedback">www-style@w3.org</a>
@@ -686,7 +686,7 @@ <h2 data-level=4 id=grid-items><span class=secno>4 </span><span class=content>
686686
is wrapped in an anonymous <a href=#grid-item>grid item</a>.
687687
However, an anonymous grid item that contains only
688688
<a href=http://www.w3.org/TR/CSS21/text.html#white-space-prop>white space</a>
689-
is not rendered, as if it were <span class=css data-link-type=maybe>display:none</span>.
689+
is not rendered, as if it were <a class=css data-link-type=maybe href=#propdef-display title=display>display:none</a>.
690690

691691
<p>
692692
A <a href=#grid-item>grid item</a> establishes a new formatting context for its contents.
@@ -726,7 +726,7 @@ <h2 data-level=4 id=grid-items><span class=secno>4 </span><span class=content>
726726
For example, a misparented <span class=css data-link-type=maybe>table-cell</span> child is fixed up
727727
by <a href=http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes>generating anonymous <span class=css data-link-type=maybe>table</span> and <span class=css data-link-type=maybe>table-row</span> elements</a> around it. <a data-biblio-type=normative data-link-type=biblio href=#css21 title=CSS21>[CSS21]</a>
728728
This fixup must occur <em>before</em> a <a href=#grid-container>grid container</a>’s children are promoted to <a href=#grid-item>grid items</a>.
729-
For example, given two contiguous child elements with <span class=css data-link-type=maybe>display:table-cell</span>,
729+
For example, given two contiguous child elements with <a class=css data-link-type=maybe href=#propdef-display title=display>display:table-cell</a>,
730730
an anonymous table wrapper box around them becomes the <a href=#grid-item>grid item</a>.
731731

732732
<p class=note>
@@ -743,11 +743,11 @@ <h3 data-level=4.1 id=position-grid><span class=secno>4.1 </span><span class=con
743743

744744
<p>
745745
A descendant of the grid can be pulled out of flow and participate directly in the grid
746-
by assigning it <span class=css data-link-type=maybe>position: grid</span>.
747-
An element with <span class=css data-link-type=maybe>position: grid</span> is pulled out of flow and participates as a grid item
748-
belonging to the first ancestor with <span class=css data-link-type=maybe>display: grid</span>.
746+
by assigning it <a class=css data-link-type=maybe href=http://dev.w3.org/csswg/css-position-3/#position title=position>position: grid</a>.
747+
An element with <a class=css data-link-type=maybe href=http://dev.w3.org/csswg/css-position-3/#position title=position>position: grid</a> is pulled out of flow and participates as a grid item
748+
belonging to the first ancestor with <a class=css data-link-type=maybe href=#propdef-display title=display>display: grid</a>.
749749
If the element is positioned using named lines or slots,
750-
it belongs to the first ancestor with <span class=css data-link-type=maybe>display: grid</span> that has all of the corresponding named lines/slots.
750+
it belongs to the first ancestor with <a class=css data-link-type=maybe href=#propdef-display title=display>display: grid</a> that has all of the corresponding named lines/slots.
751751
If no such ancestor exists, the item remains in flow.
752752

753753
<p class=issue>
@@ -1075,7 +1075,7 @@ <h4 data-level=5.1.4 id=subgrids><span class=secno>5.1.4 </span><span class=cont
10751075
Subgrids: the <a data-link-for=grid-template-rows data-link-type=value href=#valuedef-subgrid>subgrid</a> keyword</span><a class=section-link href=#subgrids>§</a></h4>
10761076

10771077
<p>
1078-
A <a href=#grid-item>grid item</a> can itself be a <a href=#grid-container>grid container</a> by giving it <span class=css data-link-type=maybe>display: grid</span>;
1078+
A <a href=#grid-item>grid item</a> can itself be a <a href=#grid-container>grid container</a> by giving it <a class=css data-link-type=maybe href=#propdef-display title=display>display: grid</a>;
10791079
in this case the layout of its contents will be independent of the layout of the grid it participates in.
10801080

10811081
<p>
@@ -1621,10 +1621,10 @@ <h3 data-level=6.3 id=implicit-grid-shorthand><span class=secno>6.3 </span><span
16211621
Other omitted values are set to their initial values.
16221622

16231623
<div class=example>
1624-
<p>For example, <span class=css data-link-type=maybe>grid-auto: 1fr;</span> is equivalent to
1624+
<p>For example, <a class=css data-link-type=maybe href=#propdef-grid-auto title=grid-auto>grid-auto: 1fr;</a> is equivalent to
16251625
<pre>grid-auto-columns: 1fr;
16261626
grid-auto-rows: 1fr;
1627-
grid-auto-flow: rows;</pre> <p>Similarly, <span class=css data-link-type=maybe>grid-auto: columns 1fr / auto</span> is equivalent to
1627+
grid-auto-flow: rows;</pre> <p>Similarly, <a class=css data-link-type=maybe href=#propdef-grid-auto title=grid-auto>grid-auto: columns 1fr / auto</a> is equivalent to
16281628
<pre>grid-auto-columns: 1fr;
16291629
grid-auto-rows: auto;
16301630
grid-auto-flow: columns;</pre> </div>
@@ -2563,6 +2563,7 @@ <h2 class=no-num id=changes><span class=content>
25632563
<li>Changed the syntax of <a href=#named-lines>named lines</a> to use parentheses and identifiers rather than strings.
25642564
<li>Removed the "none" value from <a class=property data-link-type=propdesc href=#propdef-grid-auto-flow title=grid-auto-flow>grid-auto-flow</a>, turning auto-placement on by default so that grid items by default don't stack on top of each other.
25652565
<li>Made named grid areas <a href=#implict-named-lines>imply named grid lines</a>.
2566+
<li>Added the <a class=property data-link-type=propdesc href=#propdef-grid-auto title=grid-auto>grid-auto</a> shorthand.
25662567
</ul>
25672568

25682569
<h2 class="no-ref no-num" id=conformance><span class=content>

css-grid/Overview.src.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2608,4 +2608,5 @@ <h2 class="no-num" id="changes">
26082608
<li>Changed the syntax of <a href="#named-lines">named lines</a> to use parentheses and identifiers rather than strings.
26092609
<li>Removed the "none" value from 'grid-auto-flow', turning auto-placement on by default so that grid items by default don't stack on top of each other.
26102610
<li>Made named grid areas <a href="#implict-named-lines">imply named grid lines</a>.
2611+
<li>Added the 'grid-auto' shorthand.
26112612
</ul>

0 commit comments

Comments
 (0)