在段落(x)html,css之间创建一个空格

Las*_*olt 6 html xhtml space paragraph

我想在我的<p>content</p>标签之间留出空间.不是之前而不是之后的<p>标签.我的代码是:

<div>
   <h1>A headline</h1>
   <p>Some text</p>
   <p>Some text</p>
</div>
Something
Run Code Online (Sandbox Code Playgroud)

我不希望h1和p之间的空间在h1上以零余量完成.但是在最后一个<p>标签之后我不想要空格.这可能没有:last-child或一些js/jQuery?

我不能在最后一个标签上设置class ="last",因为它是一个CMS系统.

Que*_*tin 14

p + p {
  margin-top: 1.5em;
} 
Run Code Online (Sandbox Code Playgroud)

(虽然这需要一个比IE6更好地支持CSS的浏览器)