コンテンツがレターの Web ページを用紙サイズ F4 または Folio で印刷したいのですが、Web ページを常に 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;
}
screen.css
body{
background: #aaa;
}