## Print Visibility
-Foundation includes a couple of simple classes you can use to control elements printing, or not printing. Simply attach `.show-for-print` to an element to only show when printing, and `.hide-for-print` to hide something when printing.
+Foundation includes a couple of simple classes you can use to control elements printing, or not printing. Simply attach `.show-for-print` to an element to show when printing, `.print-only` for showing the element only when printing, and `.hide-for-print` to hide something when printing.
Available classes:
- `.show-for-print` , `.print-only` (Visible for printing)
/* Print visibility */
@if $include-print-styles {
- .print-only,
- .show-for-print { display: none !important; }
+ .print-only { display: none !important; }
@media print {
.print-only,
.show-for-print { display: block !important; }