File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments