Sometimes it is desirable to have a column fill the remain space on the page and then wrap to the next column using column-fill:auto. This allows a page to have a fully filled column before wrapping to the next.
Developer Note
The current implementation has the section height set to auto which means the section grows as content as added. This gives the feel of column-fill:balanced even when set to auto.
A min height will need to be explicitly set on the section. Be sure not to set height as we need the section to be able to overflow the page, triggering the "I'm full move stuff to the next page" mechanic.
Sometimes it is desirable to have a column fill the remain space on the page and then wrap to the next column using
column-fill:auto. This allows a page to have a fully filled column before wrapping to the next.The current implementation has the section height set to auto which means the section grows as content as added. This gives the feel of
column-fill:balancedeven when set toauto.A min height will need to be explicitly set on the section. Be sure not to set
heightas we need the section to be able to overflow the page, triggering the "I'm full move stuff to the next page" mechanic.