0

我有一个带有表格的 html 文件,我正在将其转换为 .doc
我已经能够让文档在“打印视图”中自动打开

问题是表格对于页面来说太大了。我已将宽度设置为 100%,但 word 默认选中“允许表格扩展到边距”选项。我想以与将视图设置为“打印”类似的方式将其设置为“未选中”

这是我正在使用的模板:

<html xmlns:w="urn:schemas-microsoft-com:office:word">
<head>
<!--[if gte mso 9]>
  <xml>
    <w:WordDocument>
      <w:View>Print</w:View>
      <w:DoNotOptimizeForBrowser/>
    </w:WordDocument>
  </xml>
<![endif]-->
<style type="text/css">
  <%= global_style %>
  <%= report_style %>
</style>
</head>
<body>
<div id="word-export" class="WordSection1">

文档提到了一些关于“w:GrowAutoFit”的内容,但如果这可行,我不知道如何让它“虚假”。

msdn 文档
更多 msdn 文档

4

1 回答 1

3

找到了!您必须使用 w:Compatibility 和 w:DontGrowAutofit。有趣的是,在 GrowAutoFit 文档附近没有引用 DontGrowAutofit。

<html xmlns:w="urn:schemas-microsoft-com:office:word">
<head>
<!--[if gte mso 9]>
  <xml>
    <w:WordDocument>
      <w:View>Print</w:View>
      <w:DoNotOptimizeForBrowser/>
      <w:Compatibility>
        <w:DontGrowAutofit/>
      </w:Compatibility>
    </w:WordDocument>
  </xml>
<![endif]-->
<style type="text/css">
  <%= global_style %>
  <%= report_style %>
</style>
</head>
<body>
<div id="word-export" class="WordSection1">
于 2012-06-12T20:35:58.287 回答