We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8154169 commit 9dfa31bCopy full SHA for 9dfa31b
1 file changed
css3-multicol/Overview.src.html
@@ -844,8 +844,9 @@ <h3>Pseudo-algorithm</h3>
844
845
(19) if (column-width != auto) and (column-count != auto) then
846
(20) N := min(column-count, floor((available-width + column-gap) / (column-width + column-gap)))
847
-(21) W := ((available-width + column-gap) / N) - column-gap;
848
-(22) exit
+(21) N := max(1, N);
+(22) W := ((available-width + column-gap) / N) - column-gap;
849
+(23) exit
850
</pre>
851
852
0 commit comments