I've been working on making a printer-friendly version of a page full of events. We settled on having the page use multiple-columns CSS to save paper. Much to my surprise, Chrome has an override so that I can't use multi-columns when printing. Is there a reason for this, or is it a bug?
@media print {
.list{
-webkit-column-width: 20em;
-moz-column-width: 20em;
column-width: 20em;
-webkit-column-gap: 2em;
-moz-column-gap: 2em;
column-gap: 2em;
}
}