gpt4 book ai didi

html - UL 中是否允许除 LI 以外的任何内容?

转载 作者:技术小花猫 更新时间:2023-10-29 11:50:16 26 4
gpt4 key购买 nike

我们从我们的设计师那里得到了一些可疑的 HTML。以下有效吗? (注意UL里面的UL)

<ul>
<li>1</li>
<ul>
<li>1.1</li>
<li>1.2</li>
<li>1.3</li>
</ul>
<li>2</li>
<ul>
<li>1.1</li>
<li>1.2</li>
<li>1.3</li>
</ul>
</ul>

最佳答案

根据HTML 4 specs , XHTML 2 specsHTML 5 specs该代码无效。

HTML 4

<!ELEMENT UL - - (LI)+

这意味着在 <ul> 中只能有多个 <li>元素。

XHTML

Both types of lists (ul|ol) are made up of sequences of list items defined by the li element.

HTML 5

Content model:
Zero or more li and script-supporting elements.

请注意,支持脚本的元素是未呈现的元素,目前仅包括 <script><template> .

关于html - UL 中是否允许除 LI 以外的任何内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6056142/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com