我想在纸张 8.5x11 中为打印 html 设置 css。有两个代码。
body {
width: 7.5in;
padding: 0.5in;
}
table.example {
width: 90%;
}
或者
<style type="text/css">
.page {
height: 900px; /* You'll need to play with this value */
width: 670px;
page-break-after: always; /* Always insert page break after this element */
page-break-inside: avoid; /* Please don't break my page content up browser */
}
</style>
<body>
<div class="page">
<table>
blah
</table>
</div>
</body>
哪一个是对的?