@@ -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'>
16731674Flexible 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
0 commit comments