8 lines
213 B
CSS
8 lines
213 B
CSS
@media print {
|
|
/* hide navigation controls when printing */
|
|
#navigation { display: none }
|
|
@media (max-width: 12cm) {
|
|
/* keep notes in flow when printing to narrow pages */
|
|
.note { float: none }
|
|
}
|
|
} |