在包含html的单词中定义段落间距

时间:2015-01-20 06:37:42

标签: html css ms-word paragraph

我使用includetext-function将html *包含在ms word 2010文档中:

{ INCLUDETEXT  "test.html" }

那是html:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
      body {         
         line-height: 100%;                  
         }     
      p {         
         margin: 0px;
         padding: 0px;
         }

   </style>
</head>
<body>
<p>Line 1<br/>Line 2</p>
</body>
</html>

我没有设法在html / css中的字段中填充段间距。保证金和填充属性都不起作用。我检查的所有其他css属性(font *,white-space, color )工作正常。

如果没有<p> - 标记词将段落间距设置为10 pt,在<p> - 标记内,我会收到“自动”,这也会在我的完整文档中出现问题。

哪个css属性与字词兼容以定义段落间距?

非常感谢。

(* xml with xslt stylesheet - 但简化了demontration)

2 个答案:

答案 0 :(得分:0)

在每个p标签中使用id或class(我知道它很无聊但是尝试一下)。我认为这可能会奏效。还可以尝试使用article或blockquote标签

答案 1 :(得分:0)

如果我在style-attribute中添加属性,则仅接受margin-property。在css类中,单词忽略它。

这条线很好用:

<p style="margin:0">Line 1<br/>Line 2</p>

奇怪的行为: - (