File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -824,13 +824,13 @@ <h3>Pseudo-algorithm</h3>
824824< p > In this example, the actual column-count is higher than the used column-count due to explicit column breaks:
825825
826826< pre >
827- div { width: 40em; columns: 20em }
827+ div { width: 40em; columns: 20em; column-gap: 0 }
828828p { break-after: column }
829829
830- <div style="width: 40em; columns: 20em" >
831- <p> one
832- <p> two
833- <p> three
830+ <div>
831+ <p> one
832+ <p> two
833+ <p> three
834834</div>
835835</ pre >
836836
@@ -843,8 +843,16 @@ <h3>Pseudo-algorithm</h3>
843843< p > The actual column-count may be lower than the used column-count. Consider this example:
844844
845845< pre >
846- <div style="width: 80em; height: 10em; columns: 20em; column-gap: 0; column-fill: auto;">
847- foo
846+ div {
847+ width: 80em;
848+ height: 10em;
849+ columns: 20em;
850+ column-gap: 0;
851+ column-fill: auto;
852+ }
853+
854+ <div>
855+ foo
848856</div>
849857</ pre >
850858
You can’t perform that action at this time.
0 commit comments