HTML内容文档文件,页面大小为1页,在Libre中显示1页,在MS Word中显示2页

时间:2019-04-09 07:43:03

标签: html css ms-word libreoffice doc

我正在通过python创建一个扩展名为.doc的HTML内容文件。具有1页大小的html表在Libre中恰好显示了1页,但是当我在MS Word中打开它时,它显示了2页的内容。

我认为MS单词不接受页面大小或我猜是在样式标签内给出的样式。我这样给:

  <style type="text/css">   
            @page { size: 8.27in 11.69in; margin: 0.4in }  
            tr{page-break-inside:avoid; page-break-after:auto; border: 1px solid #2b628d;   }
            table{ font-family: Calibri !important; font-size: 8pt !important;    width:100%;    page-break-inside: auto;}  
            p { font-size:8pt !important; font-family: Calibri !important; }
            font{ font-size:8pt !important;  font-family: Calibri !important;color:#336699 !important; }     
    </style>

如何带来与libre writer中显示的相同的方式?

0 个答案:

没有答案