为什么@page {size: landscape}
无法使用IE8和IE9,但适用于Chrome。我怎样才能在IE8和IE9中解决这个问题?任何想法/建议
我使用横向的原因是因为我的表有7列而在打印时,它会剪切表格的右侧
以下是我正在使用的CSS样式
<style>
@media print
{
@page {size: landscape}
#tableContainer {height:100% !important; }
#tableContainer {overflow:hidden !important;}
#table{height:100% !important;}
#tabletr{display:table-row !important ;}
}
</style>
#table
是<table>
而#tableContainer
是<div>
,其中包含<table>