16 lines
252 B
CSS
16 lines
252 B
CSS
@page {
|
|
margin-bottom: 5pt;
|
|
margin-top: 5pt
|
|
}
|
|
html {
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
overflow: auto;
|
|
-webkit-column-width: 100%;
|
|
-moz-column-width: 100%;
|
|
column-width: 100%;
|
|
page-break-inside: avoid;
|
|
}
|