我想打印我的网页,其内容是纸张大小为 F4 或 Folio 的字母,但我在浏览器中打印时遇到问题,网页总是以 A4/字母大小打印。如何使其默认为 F4 或 Folio,以便用户不必再次设置纸张尺寸打印设置?无论如何,我的浏览器中没有设置 F4 的大小....
感谢您的提前,这是我的代码:
HTML
<html>
<head>
<title>Coba Print</title>
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
</head>
<body>
....here the letter
</body> </html>
打印.css
html{
width: 8.5in;
height: 13in;
}
body{
width: 6.5in;
padding: 0;
margin: 1in 1in 1in 1in;
font-size: 12pt;
page-break-inside: avoid;
}
屏幕.css
body{
background: #aaa;
}