IE8和IE9中的横向打印

时间:2014-02-20 15:42:27

标签: javascript css

为什么@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>

0 个答案:

没有答案