我可以在HTML5中使用以下语法吗?
<p><em>If this is a poem<br>
can I close the <br> tags<br>
of each verse,<br>
in a single <em> tag<br>
as I in this example do?</em></p>
答案 0 :(得分:0)
你有什么作品,不过它有点邋..我会采取这种方法。这是小提琴:https://jsfiddle.net/DIRTY_SMITH/hvsas2Lj/
我在css
中设置了所有内容并取出了所有<br>
标记
答案 1 :(得分:0)
您还可以使用pre元素定义预格式化的文本,并保留空格和换行符。
<pre>
if this is a poem<br>
can I close the <br> tags<br>
of each verse,<br>
in a single <em> tag<br>
as I in this example do?</em>
</pre>