我在主<br />
标记中有很多<p>
个标记。
我希望增加<br>
创建的可视空间(示例边距顶部和底部)。
<p>
Some text here<br />
Some other text<br />
Some other text
</p>
我可以使用不同的<p>
,但我必须在我的网站上以这种方式进行。
知道如何增加<br>
创造的空间吗?非常感谢。
答案 0 :(得分:4)
答案 1 :(得分:1)
如果您不想使用CSS,请尝试以下代码。当您将样式与html文件的
一起使用时,javascript编程将更喜欢您在html文件中的顺序,而不是css文件中的同一类。
<p style="line-height: 2.7">
Some text here<br />
Some other text<br />
Some other text
</p>
<p style="margin-top: 3.5em">
Some text here<br />
Some other text<br />
Some other text
</p>
<p style="line-height: 0.6; margin-top: 7.0em">
Some text here<br />
Some other text<br />
Some other text
</p>
希望我的回答对您的问题有所帮助。
最好的问候
Wahab
答案 2 :(得分:0)
您需要使用line-height
属性。
p {line-height:70px}
答案 3 :(得分:0)
我认为br标签不仅仅是换行符。为什么要尝试编写一个解决问题的代码。如果您不能使用任何建议的答案,我会说只使用多个br标签。