我生成一個XHTML文檔並將Mime類型設置爲「application/msword」,以便在Word中打開。將XHTML呈現爲MS Word文檔 - 標題
要創建一個標題我似乎引用一個外部文件這樣的:
<style>
...
@page{mso-footnote-separator:url("**OUT_files/header.htm**") fs;
mso-footnote-continuation-separator:url("OUT_files/header.htm") fcs;
mso-endnote-separator:url("OUT_files/header.htm") es;
mso-endnote-continuation-separator:url("OUT_files/header.htm") ecs;}
@page Section1{
mso-header-margin:.5in;
mso-header:url("OUT_files/header.htm") h1;
} }
...
</style>
有誰知道如何引用主XHTML文檔內定義一個div,而無需引用外部文件?
感謝