In Mozilla, applying a css rule like
-moz-column-count: 2;
gets you 2 columns that are the full height of the page. From what their MDC suggests, this is called "Height Balancing".
Webkit has something similar:
-webkit-column-count: 2;
I'm not completely sure if Webkit has "Height Balancing" or not (this may be the root of my problem, honestly). In Webkit, this is displayed the same way on the page. However, when you print the page with said columnar content, in Firefox, the printed pages end up looking like this:
A C
B D
---
E G
F H
whereas Webkit displays like this:
A E
B F
---
C G
D H
Is there a way to make Webkit print like Mozilla?