我无法为在 A4 尺寸的纸张上打印设置固定的 HTML 尺寸。每次数据大小在内容中发生变化时,打印格式
问问题
3179 次
2 回答
0
我想您可以在这里找到您要搜索的内容:[没有图片的纸张样式][
.list li {
list-style: none;
border-bottom: 1px dotted #ccc;
text-indent: 25px;
height: auto;
padding: 10px;
text-transform: capitalize;
}
.list li:hover {
background-color: #f0f0f0;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
}
]
于 2013-07-17T09:48:41.133 回答
0
经典的 asp 与打印 a4 大小无关,它的职责是 HTML、CSS 构建打印页面。
为每个页面创建部分,并使用以下代码调整边距、高度和宽度。
如果要打印 A4 尺寸。
Size : 8.27in and 11.69 inches
@page Section1 {
size:8.27in 11.69in;
margin:.5in .5in .5in .5in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;
}
div.Section1 {
page:Section1;
}
然后创建一个包含所有内容的 div。
<div class=Section1>
type your content here...
</div>
您可以在此处找到有关打印样式表以及如何使用它们的更多信息
于 2013-07-17T09:50:52.897 回答