Skip to content

Commit 5d8b262

Browse files
committed
[css-grid] Linkify some fr references.
1 parent ceab5d9 commit 5d8b262

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

css-grid/Overview.bs

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,10 @@ Declaring the Grid</h3>
189189
The following declares a grid with four named areas:
190190
<code>H</code>, <code>A</code>, <code>B</code>,
191191
and <code>F</code>.
192-
The first column is sized to fit its contents,
193-
and the second column takes up the remaining space.
194-
Rows default to ''grid-template-rows/auto'' (content-based) sizing; the last row is given a fixed size of 30px.
192+
The first column is sized to fit its contents (''grid-template-columns/auto''),
193+
and the second column takes up the remaining space (<a value lt=fr>1fr</a>).
194+
Rows default to ''grid-template-rows/auto'' (content-based) sizing;
195+
the last row is given a fixed size of ''30px''.
195196
<pre>
196197
main {
197198
grid: "H H "
@@ -201,11 +202,11 @@ Declaring the Grid</h3>
201202
}
202203
</pre>
203204
<li>
204-
The following declares a grid with as many rows
205-
of at least 5em as will fit in the height of the grid container (''100vh'')
206-
and no explicit columns;
207-
instead columns are added as content is added.
208-
The resulting column widths are equalized.
205+
The following declares a grid with as many rows of at least ''5em''
206+
as will fit in the height of the grid container (''100vh'').
207+
The grid has no explicit columns;
208+
instead columns are added as content is added,
209+
the resulting column widths are equalized (<a value lt=fr>1fr</a>)
209210
Since content overflowing to the right won't print,
210211
an alternate layout for printing adds rows instead.
211212

@@ -1672,7 +1673,8 @@ Repeat-to-fill: ''auto-fill'' and ''auto-fit'' repetitions</h5>
16721673
<h4 id='fr-unit'>
16731674
Flexible Lengths: the ''fr'' unit</h4>
16741675

1675-
A <dfn export>flexible length</dfn> or <dfn><<flex>></dfn> is a dimension with the ''fr'' unit,
1676+
A <dfn export>flexible length</dfn> or <dfn><<flex>></dfn> is a dimension
1677+
with the <dfn value for="<flex>" lt="fr|fr unit">fr</dfn> unit,
16761678
which represents a fraction of the <a>free space</a> in the <a>grid container</a>.
16771679

16781680
Note: <<flex>> values are not <<length>>s

css-grid/issues-cr-2016.bsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Issue 2.
1313
Summary: Cross-reference fr unit from early references
1414
From: Jens Oliver Meiert
1515
Comment: https://lists.w3.org/Archives/Public/www-style/2016Oct/0095.html
16-
Open
16+
Closed: Accepted
1717
Resolved: Editorial
1818
----
1919
Issue 3.

0 commit comments

Comments
 (0)