We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56d362 commit 1ab5aecCopy full SHA for 1ab5aec
1 file changed
css3-multicol/Overview.src.html
@@ -830,12 +830,12 @@ <h3>Pseudo-algorithm</h3>
830
(19) W := max(0, (available-width - ((N - 1) * column-gap))/N);
831
exit;
832
833
-(27) if (column-count = auto) and (column-width != auto) then
+(27) if (column-width != auto) and (column-count = auto) then
834
(32) N := min(1, floor((available-width + column-gap) / (column-width + column-gap)));
835
(33) W := ((available-width + column-gap) / N) - column-gap;
836
837
838
- if (column-count != auto) and (column-width != auto) then
+ if (column-width != auto) and (column-count != auto) then
839
(39) N := min(column-count, floor((available-width + column-gap) / (column-width + column-gap)))
840
(40) W := ((available-width + column-gap) / N) - column-gap;
841
exit
0 commit comments