如何在两行之间拆分HTML代码?

时间:2010-12-10 22:45:55

标签: html

我有很长的HTML行。我试着转过身来:

<code><othercode>

<code><
othercode>

但它打破了HTML,我试过了:

<code>
<othercode>

但它在图像之间留出了空间。在python中,你可以在行尾添加一个'\'。 HTML中有类似内容吗?

感谢。

3 个答案:

答案 0 :(得分:11)

您无法将标记(&lt;)的开头与标记标识符(在本例中为“othercode”)分开。所以这不起作用:

<code><
othercode params=...>

但这会:

<code><othercode
params=...>

希望有所帮助。

答案 1 :(得分:2)

你应该能够做到

<code><othercode
id="something">

即使这样也可以:

<code><othercode
><morecode>

答案 2 :(得分:2)

这应该有效:

<code
><othercode>

<code><othercode
>