Skip to content

Commit 53ba76f

Browse files
committed
x
1 parent 1ab5aec commit 53ba76f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

css3-multicol/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,12 +1011,12 @@ <h3 id=pseudo-algorithm><span class=secno>3.4. </span>Pseudo-algorithm</h3>
10111011
(19) W := max(0, (available-width - ((N - 1) * column-gap))/N);
10121012
exit;
10131013

1014-
(27) if (column-count = auto) and (column-width != auto) then
1014+
(27) if (column-width != auto) and (column-count = auto) then
10151015
(32) N := min(1, floor((available-width + column-gap) / (column-width + column-gap)));
10161016
(33) W := ((available-width + column-gap) / N) - column-gap;
10171017
exit;
10181018

1019-
if (column-count != auto) and (column-width != auto) then
1019+
if (column-width != auto) and (column-count != auto) then
10201020
(39) N := min(column-count, floor((available-width + column-gap) / (column-width + column-gap)))
10211021
(40) W := ((available-width + column-gap) / N) - column-gap;
10221022
exit

0 commit comments

Comments
 (0)