从HTML导出Excel时无法获取页面方向

时间:2015-03-12 10:40:43

标签: html export-to-excel

我从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

0 个答案:

没有答案