HTML 横向 MS Word
HTML to landscape MS Word
MS Word 可以将 HTML 解释为文档,但我想在 HTML 代码中指定以横向字母页面显示它。可能吗?
由于 HTML 没有 "pages" 的概念,因此也没有页面方向的概念,您将无法通过开箱即用的方式实现这一点HTML。 Word 确实有 HTML 文件格式,但没有记录。它是多年前添加的,用于启用往返 Word 文档以在浏览器中显示。如果您将 Word 文档另存为 "Web Page"(不是经过过滤的网页),那么我认为您会得到该文件格式(否则就是 "Single file web page" 选项)。您可以检查它并尝试将您的 HTML 内容合并到 Word 的 HTML 词汇表中。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns:office="urn:schemas-microsoft-com:office:office"
xmlns:word="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<style>
@page Section1 {size:595.45pt 841.7pt; margin:1.0in 1.25in 1.0in 1.25in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}
div.Section1 {page:Section1;}
@page Section2 {size:841.7pt 595.45pt;mso-page-orientation:landscape;margin:1.25in 1.0in 1.25in 1.0in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}
div.Section2 {page:Section2;}
</style>
</head>
<body>
<div class=Section2>
<!--your content here-->
</div>
</body>
</html>
MS Word 可以将 HTML 解释为文档,但我想在 HTML 代码中指定以横向字母页面显示它。可能吗?
由于 HTML 没有 "pages" 的概念,因此也没有页面方向的概念,您将无法通过开箱即用的方式实现这一点HTML。 Word 确实有 HTML 文件格式,但没有记录。它是多年前添加的,用于启用往返 Word 文档以在浏览器中显示。如果您将 Word 文档另存为 "Web Page"(不是经过过滤的网页),那么我认为您会得到该文件格式(否则就是 "Single file web page" 选项)。您可以检查它并尝试将您的 HTML 内容合并到 Word 的 HTML 词汇表中。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns:office="urn:schemas-microsoft-com:office:office"
xmlns:word="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<style>
@page Section1 {size:595.45pt 841.7pt; margin:1.0in 1.25in 1.0in 1.25in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}
div.Section1 {page:Section1;}
@page Section2 {size:841.7pt 595.45pt;mso-page-orientation:landscape;margin:1.25in 1.0in 1.25in 1.0in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}
div.Section2 {page:Section2;}
</style>
</head>
<body>
<div class=Section2>
<!--your content here-->
</div>
</body>
</html>