Skip to content

Commit dfb0788

Browse files
committed
[css-grid] Reword heading for grid-auto-position.
1 parent 6c46d67 commit dfb0788

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

css-grid/Overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h2 class="no-num no-toc no-ref" id=contents><span class=content>Table of conten
123123
Sizing Auto-generated Rows and Columns: the <span class=property data-link-type=propdesc title=grid-auto-rows>grid-auto-rows</span> and <span class=property data-link-type=propdesc title=grid-auto-columns>grid-auto-columns</span> properties</a><li><a href=#grid-auto-flow-property><span class=secno>6.2</span>
124124
Automatic Placement: the <span class=property data-link-type=propdesc title=grid-auto-flow>grid-auto-flow</span> property</a><ul class=toc><li><a href=#auto-placement-algo><span class=secno>6.2.1</span>
125125
Automatic Grid Item Placement Algorithm</a></ul><li><a href=#grid-auto-position-property><span class=secno>6.3</span>
126-
Automatic Placement: the <span class=property data-link-type=propdesc title=grid-auto-position>grid-auto-position</span> property</a><li><a href=#implicit-grid-shorthand><span class=secno>6.4</span>
126+
Default Position: the <span class=property data-link-type=propdesc title=grid-auto-position>grid-auto-position</span> property</a><li><a href=#implicit-grid-shorthand><span class=secno>6.4</span>
127127
Implicit Grid Shorthand: the <span class=property data-link-type=propdesc title=grid-auto>grid-auto</span> property</a></ul><li><a href=#placement><span class=secno>7</span>
128128
Placing Grid Items</a><ul class=toc><li><a href=#line-placement><span class=secno>7.1</span>
129129
Line-based Placement: the <span class=property data-link-type=propdesc title=grid-row-start>grid-row-start</span>, <span class=property data-link-type=propdesc title=grid-column-start>grid-column-start</span>, <span class=property data-link-type=propdesc title=grid-row-end>grid-row-end</span>, and <span class=property data-link-type=propdesc title=grid-column-end>grid-column-end</span> properties</a><li><a href=#placement-shorthands><span class=secno>7.2</span>
@@ -853,7 +853,7 @@ <h3 data-level=5.1 id=track-sizing><span class=secno>5.1 </span><span class=cont
853853
<dfn data-dfn-type=type data-export="" id=typedef-track-size>&lt;track-size&gt;</dfn> = minmax( <a class=production data-link-type=type href=#typedef-track-breadth>&lt;track-breadth&gt;</a> , <a class=production data-link-type=type href=#typedef-track-breadth>&lt;track-breadth&gt;</a> ) | auto | <a class=production data-link-type=type href=#typedef-track-breadth>&lt;track-breadth&gt;</a>
854854
<dfn data-dfn-type=type data-export="" id=typedef-track-breadth>&lt;track-breadth&gt;</dfn> = <a class=production data-link-type=type href=http://dev.w3.org/csswg/css-values-3/#length-value>&lt;length&gt;</a> | <a class=production data-link-type=type href=http://dev.w3.org/csswg/css-values-3/#percentage-value>&lt;percentage&gt;</a> | <a class=production data-link-type=type href=#typedef-flex>&lt;flex&gt;</a> | min-content | max-content
855855
<dfn data-dfn-type=type data-export="" id=typedef-line-names>&lt;line-names&gt;</dfn> = ( <a class=production data-link-type=type>&lt;ident&gt;</a>* )
856-
<dfn data-dfn-type=type data-export="" id=typedef-line-name-list>&lt;line-name-list&gt;</dfn> = [ <a class=production data-link-type=type href=#typedef-line-names>&lt;line-names&gt;</a> || repeat(<a class=production data-link-type=type>&lt;positive-integer&gt;</a>, <a class=production data-link-type=type href=#typedef-line-names>&lt;line-names&gt;</a>) ]+
856+
<dfn data-dfn-type=type data-export="" id=typedef-line-name-list>&lt;line-name-list&gt;</dfn> = [ <a class=production data-link-type=type href=#typedef-line-names>&lt;line-names&gt;</a> | repeat(<a class=production data-link-type=type>&lt;positive-integer&gt;</a>, <a class=production data-link-type=type href=#typedef-line-names>&lt;line-names&gt;</a>) ]+
857857
</pre>
858858
<p>Where:
859859

@@ -1605,7 +1605,7 @@ <h4 data-level=6.2.1 id=auto-placement-algo><span class=secno>6.2.1 </span><span
16051605
Edit the algorithm to allow for dense packing.
16061606

16071607
<h3 data-level=6.3 id=grid-auto-position-property><span class=secno>6.3 </span><span class=content>
1608-
Automatic Placement: the <a class=property data-link-type=propdesc href=#propdef-grid-auto-position title=grid-auto-position>grid-auto-position</a> property</span><a class=section-link href=#grid-auto-position-property>§</a></h3>
1608+
Default Position: the <a class=property data-link-type=propdesc href=#propdef-grid-auto-position title=grid-auto-position>grid-auto-position</a> property</span><a class=section-link href=#grid-auto-position-property>§</a></h3>
16091609

16101610
<table class=propdef><tr><th>Name:<td><dfn data-dfn-type=property data-export="" id=propdef-grid-auto-position>grid-auto-position</dfn><tr><th>Value:<td><a class=production data-link-type=type href=#typedef-grid-line>&lt;grid-line&gt;</a> / <a class=production data-link-type=type href=#typedef-grid-line>&lt;grid-line&gt;</a><tr><th>Initial:<td>1 / 1<tr><th>Applies to:<td><a href=#grid-container>grid containers</a><tr><th>Inherited:<td>no<tr><th>Percentages:<td>na/<tr><th>Media:<td>visual<tr><th>Computed value:<td>specified value</table>
16111611
<p> If a <a href=#grid-container>grid container</a> doesn't specify an automatic-placement strategy through <a class=property data-link-type=propdesc href=#propdef-grid-auto-flow title=grid-auto-flow>grid-auto-flow</a>,

css-grid/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@ <h4 id='auto-placement-algo'>
15961596
Edit the algorithm to allow for dense packing.
15971597

15981598
<h3 id="grid-auto-position-property">
1599-
Automatic Placement: the 'grid-auto-position' property</h3>
1599+
Default Position: the 'grid-auto-position' property</h3>
16001600

16011601
<pre class='propdef'>
16021602
Name: grid-auto-position

0 commit comments

Comments
 (0)