我需要使用打印样式表打印div的内容。我的div有大排序列表(200多行)。 问题 : 只打印装有第一页的div的内容。内容的内容未显示在打印中。
@media print
{
body *
{
visibility: hidden;
}
#printcontent, #printcontent *
{
visibility: visible;
}
#printcontent
{
background-color: white;
border: 0px;
position: fixed;
top: 0px !important;
left: 0px !important;
margin: 0;
font-size: 14px;
line-height: 18px;
display: inline;
overflow: visible !important;
}
*
{
overflow: visible !important;
}
#nonPrintableTable
{
display: none;
}
#nonPrintableTable div
{
display: none;
}
}
注意: 我改变了doc类型以修复IE上的定位问题。
提前感谢。