我从HTML导出我的Excel文件。一切正常,但页面方向(风景)。
这是我的代码:
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel">>
<head>
<style>
<!--
@page
{
mso-page-orientation:landscape;
size:landscape;
}
-->
</style>
<meta http-equiv="Content-type" content="text/html; charset=windows-1252">
<!--[if gte mso 9]>
<xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Sheet 1</x:Name>
<x:WorksheetOptions>
<x:FitToPage/>
<x:Print>
<x:FitWidth>1</x:FitWidth>
<x:FitHeight>1000</x:FitHeight>
<x:ValidPrinterInfo/>
</x:Print>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
</x:ExcelWorkbook>
</xml>
<![endif]-->
</head>
但是页面(Mac Office 2011)始终以纵向方向打印,并且不适应页面宽度。
任何提示?
由于
的Fabio