Follow the @Hashem Qolami answer, but you need a little change in the loop because for some reason it does not calculate the percentage value for the columns, and gridCalc() no longer recommended (line # 22) in Foundation 5. Therefore, instead of grid-calc() you should use grid-calc() or much better if you calculate percentages:
@media print { @for $i from 1 through $total-columns { .large-
It will do the basic things, but you need more hacks if you created a custom HTML structure with some tricks.
Set width for all large html:
@media print { html { width: rem-calc(1280px); } @for $i from 1 through $total-columns { .large-
Finally, in _settings.scss (around line # 82) set the value of $screen from "only screen" to "only print, screen" :
$screen: "only print, screen";
Sas sam
source share