html如何处理重叠标签?

时间:2017-06-28 08:22:43

标签: html html5

例如:

<b>Hello <i>there </b>friend</i>

html可以处理重叠标记,如示例中所示吗?

2 个答案:

答案 0 :(得分:3)

HTML只是禁止语法处理问题。它无效。

浏览器有错误恢复策略,但您不应该以触发它们为目标。

HTML 5有非规范性 error recovery strategy for this case

跟随它的浏览器会解析:

<b>Hello <i>there </b>friend</i>
好像是

<b>Hello <i>there </i></b><i>friend</i>

答案 1 :(得分:-2)

合并ib完全没问题,但是,您需要确保正确嵌套它们。

<b>Hello <i>there </i></b><i>friend</i>