Why can#39;t the lt;pgt; tag contain a lt;divgt; tag inside it?(为什么 lt;pgt;标签包含一个 lt;divgt;标签里面呢?)
问题描述
据我所知,这是对的:
<p>一些话</p></div>但这是错误的:
<p><div>一些词</div></p>
第一个可以通过W3C 验证器 (XHTML 1.0),但第二个不能.我知道没有人会像第二个那样编写代码.我只是想知道为什么.
那么其他标签的包含关系呢?
解决方案 查找允许的包含关系的权威位置是 HTML 规范.例如,参见 http://www.w3.org/TR/html4/sgml/dtd.html.它指定哪些元素是块元素,哪些是内联元素.对于这些列表,请搜索标记为HTML 内容模型"的部分.
对于P元素,指定如下,表示P元素只允许包含内联元素.
这与 http://www.w3.org/TR/html401/struct/text.html#h-9.3.1,其中表示 P 元素不能包含块级元素(包括 P 本身)."
As far as I know, this is right:
<div>
<p>some words</p>
</div>
But this is wrong:
<p>
<div>some words</div>
</p>
The first one can pass the W3C validator (XHTML 1.0), but the second can't. I know that nobody will write code like the second one. I just want know why.
And what about other tags' containment relationship?
解决方案 An authoritative place to look for allowed containment relations is the HTML spec. See, for example, http://www.w3.org/TR/html4/sgml/dtd.html. It specifies which elements are block elements and which are inline. For those lists, search for the section marked "HTML content models".
For the P element, it specifies the following, which indicates that P elements are only allowed to contain inline elements.
<!ELEMENT P - O (%inline;)* -- paragraph -->
This is consistent with http://www.w3.org/TR/html401/struct/text.html#h-9.3.1, which says that the P element "cannot contain block-level elements (including P itself)."
这篇关于为什么 <p>标签包含一个 <div>标签里面呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 <p>标签包含一个 <div>标签里面呢?
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01