<p>包不住<div>是强制的 w3c 标准?还是约定成俗的规范?

2020-09-22 14:32:29 +08:00
 lisisi
发现有些浏览器会把<p>中的<div>吐出来,有些不吐。
2693 次点击
所在节点    HTML
4 条回复
mokeyjay
2020-09-22 14:36:05 +08:00
没看懂,举个例子?
codehz
2020-09-22 15:00:13 +08:00
p 的内容必须是 flow content ( https://html.spec.whatwg.org/#flow-content
而 div 是 Palpable content ( https://html.spec.whatwg.org/#palpable-content
所以 p 里面不能放 div,
至于为什么 div 会被吐出来,就是因为根据 https://html.spec.whatwg.org/#concept-element-tag-omission 规则,元素结束标签在一些情况可以省略,而多余的结束标签会被忽略
p 的结束标签可以省略
https://html.spec.whatwg.org/#the-p-element

Tag omission in text/html:
A p element's end tag can be omitted if the p element is immediately followed by an address, article, aside, blockquote, details, div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, main, menu, nav, ol, p, pre, section, table, or ul element, or if there is no more content in the parent element and the parent element is an HTML element that is not an a, audio, del, ins, map, noscript, or video element, or an autonomous custom element.
codehz
2020-09-22 16:25:02 +08:00
上面有一点错误,一个元素是 Palpable content 不代表不是 flow content,应该说 div 不属于 flow content ... https://html.spec.whatwg.org/multipage/dom.html#kinds-of-content
codehz
2020-09-22 16:36:09 +08:00
不对,研究了一下标准,上面说的内容错了

p 允许 Phrasing content
div 不是 Phrasing content

但是,由于自动闭合规则存在,所以<p><div></div>是合法的,多余的</p>才是不合法的,标准似乎没有规定多余的</p>的处理方案,有一个方法就是给他补一个<p>,于是变成<p><div></div><p></p>

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/709412

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX