Skip to content

Commit ccd94de

Browse files
committed
[css-grid-1] Switch <positive-integer> to valid css-values syntax. #4479
1 parent 8e994ba commit ccd94de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

css-grid-1/Overview.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Former editor: Alex Mogilevsky, Microsoft Corporation, alexmog@microsoft.com
2929
Former editor: Phil Cupp, Microsoft Corporation, pcupp@microsoft.com
3030
Issue Tracking: Disposition of Comments https://drafts.csswg.org/css-grid-1/issues
3131
Abstract: This CSS module defines a two-dimensional grid-based layout system, optimized for user interface design. In the grid layout model, the children of a grid container can be positioned into arbitrary slots in a predefined flexible or fixed-size layout grid.
32-
Ignored Terms: containing block, <positive-integer>, <ident>, auto, grid-*-start, grid-*-end, flex factor, flex factors, block formatting context, grid-auto-position
32+
Ignored Terms: containing block, <ident>, auto, grid-*-start, grid-*-end, flex factor, flex factors, block formatting context, grid-auto-position
3333
Ignored Vars: A, B, C, size-contribution, track-sizes, extra-space
3434
Link Defaults: css2 (property) margin/min-height/max-height/min-width/max-width, css-align-3 (value) stretch/baseline, css-position-3 (property) left, css-position-3 (property) position, css-writing-modes-3 (dfn) start/end
3535
At Risk: application of grid placement to absolutely-positioned boxes
@@ -1685,7 +1685,7 @@ Syntax of ''repeat()''</h5>
16851685
The generic form of the ''repeat()'' syntax is, approximately,
16861686

16871687
<pre class='prod'>
1688-
repeat( [ <<positive-integer>> | auto-fill | auto-fit ] , <<track-list>> )
1688+
repeat( [ <<integer [0,&infin;]>> | auto-fill | auto-fit ] , <<track-list>> )
16891689
</pre>
16901690

16911691
The first argument specifies the number of repetitions.
@@ -1703,9 +1703,9 @@ Syntax of ''repeat()''</h5>
17031703
has several forms:
17041704

17051705
<pre class='prod'>
1706-
<dfn><<track-repeat>></dfn> = repeat( [ <<positive-integer>> ] , [ <<line-names>>? <<track-size>> ]+ <<line-names>>? )
1706+
<dfn><<track-repeat>></dfn> = repeat( [ <<integer [0,&infin;]>> ] , [ <<line-names>>? <<track-size>> ]+ <<line-names>>? )
17071707
<dfn><<auto-repeat>></dfn> = repeat( [ auto-fill | auto-fit ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
1708-
<dfn><<fixed-repeat>></dfn> = repeat( [ <<positive-integer>> ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
1708+
<dfn><<fixed-repeat>></dfn> = repeat( [ <<integer [0,&infin;]>> ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
17091709
</pre>
17101710

17111711
* The <<track-repeat>> variant can represent the repetition of any <<track-size>>,

0 commit comments

Comments
 (0)