Skip to content

Commit 9b153f4

Browse files
committed
[css-grid-1][editorial] Move from 'ex/implicitly-named lines' to 'ex/implicitly-created line names'. #5393
1 parent 7bf19b9 commit 9b153f4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

css-grid-1/Overview.bs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,10 +1653,10 @@ Track Sizes</h4>
16531653
Naming Grid Lines: the <css>[<<custom-ident>>*]</css> syntax</h4>
16541654

16551655
While <a>grid lines</a> can always be referred to by their numerical index,
1656-
<dfn export lt="named line">named lines</dfn>
1656+
<dfn export lt="line name">line names</dfn>
16571657
can make the <a>grid-placement properties</a> easier to understand and maintain.
1658-
Lines can be <dfn lt="explicitly-named line">explicitly named</dfn> in the 'grid-template-rows' and 'grid-template-columns' properties,
1659-
or [=implicitly-named lines|implicitly named=] by creating <a>named grid areas</a> with the 'grid-template-areas' property.
1658+
[=Line names=] can be <dfn lt="explicitly-created line name">explicitly-created</dfn> with the 'grid-template-rows' and 'grid-template-columns' properties,
1659+
or [=implicitly-created line name|implicitly created=] by <a>named grid areas</a> with the 'grid-template-areas' property.
16601660

16611661
<div class='example'>
16621662
For example,
@@ -2160,22 +2160,22 @@ Serialization Of Template Strings</h4>
21602160
with all other white space elided.
21612161

21622162
<h4 id="implicit-named-lines">
2163-
Implicitly-Named Lines</h4>
2163+
Implicitly-Created Line Names</h4>
21642164

2165-
The 'grid-template-areas' property creates <dfn export lt="implicitly-named line">implicitly-named lines</dfn> from the <a>named grid areas</a> in the template.
2166-
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-named lines</a> are created:
2165+
The 'grid-template-areas' property generates <dfn export lt="implicitly-created line name">implicitly-created line names</dfn> from the <a>named grid areas</a> in the template.
2166+
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-created line names</a> are created:
21672167
two named <css><var>foo</var>-start</css>, naming the row-start and column-start lines of the <a>named grid area</a>,
21682168
and two named <css><var>foo</var>-end</css>, naming the row-end and column-end lines of the <a>named grid area</a>.
21692169

2170-
These named lines behave just like any other named line,
2170+
These [=implicitly-created line names=] behave just like any other [=line names=],
21712171
except that they do not appear in the value of 'grid-template-rows'/'grid-template-columns'.
2172-
Even if an [=explicitly-named line=] of the same name is defined,
2173-
the [=implicitly-named lines=] are just more lines with the same name.
2172+
Even if an [=explicitly-created line name=] with the same name is defined,
2173+
the [=implicitly-created line names=] are just more lines with the same name.
21742174

21752175
<h4 id="implicit-named-areas">
21762176
Implicitly-Named Areas</h4>
21772177

2178-
Since a <a>named grid area</a> is referenced by the <a>implicitly-named lines</a> it produces,
2178+
Since a <a>named grid area</a> is referenced by the <a>implicitly-created line names</a> it produces,
21792179
explicitly adding named lines of the same form (''foo-start''/''foo-end'')
21802180
effectively creates a <a>named grid area</a>.
21812181
Such <dfn export lt="implicitly-named area">implicitly-named areas</dfn> do not appear in the value of 'grid-template-areas',
@@ -2273,7 +2273,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
22732273
</ul>
22742274
</object>
22752275
<figcaption>The grid created by the declarations above.
2276-
(The “a/b-start/end” names are created [=implicitly-named line|implicitly=] by the <a>named grid areas</a>.)
2276+
(The “a/b-start/end” names are [=implicitly-created line name|implicitly created=] by the <a>named grid areas</a>.)
22772277
</figcaption>
22782278
</figure>
22792279
</div>
@@ -2950,7 +2950,7 @@ Line-based Placement: the 'grid-row-start', 'grid-column-start', 'grid-row-end',
29502950
if there is a <a>named line</a> with the name <css><<custom-ident>>-start</css> (for 'grid-*-start') / <css><<custom-ident>>-end</css> (for 'grid-*-end'),
29512951
contributes the first such line to the <a>grid item</a>’s <a>placement</a>.
29522952

2953-
Note: <a>Named grid areas</a> automatically generate <a>implicitly-named lines</a> of this form,
2953+
Note: <a>Named grid areas</a> automatically generate [=implicitly-created line names=] of this form,
29542954
so specifying ''grid-row-start: foo'' will choose the start edge of that <a>named grid area</a>
29552955
(unless another line named ''foo-start'' was explicitly specified before it).
29562956

0 commit comments

Comments
 (0)