例如:
<b>Hello <i>there </b>friend</i>
html可以处理重叠标记,如示例中所示吗?
答案 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)
合并i
和b
完全没问题,但是,您需要确保正确嵌套它们。
<b>Hello <i>there </i></b><i>friend</i>