我有一种情况,我想要一个看起来像这样的段落:
标题,大胆有关手头主题的一些信息......
我想在标题之前添加一个新行,但它会流入段落。
我可以通过两种方式来实现这一目标:
<br />
标记。问题是(2)很难,因为我几乎无法控制HTML,这是由Jekyll框架中的Markdown生成的。
(1)通常被认为是不好的做法,但它可能是去这里的方式。
有更好的选择吗?
结束重复;使用float
就是答案。
答案 0 :(得分:2)
<h1 style="display: inline-block;">Header</h1>
<p style="display: inline-block;">paragraph</p>
这应该允许你将它们放在同一条线上。
答案 1 :(得分:0)
试试这个<p><span style="font-weight:bold">The Header, in Bold </span> Some information about the topic at hand...</p>
答案 2 :(得分:-3)
<b>This is a Heading</b>
<p>This is a paragraph.</p>
或
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>