相关疑难解决方法(0)

ol/ul应该在<p>内还是在外面?

这两者之间是否符合标准?

<p>Text text text ...
    <ol>
        <li>First element</li>
    </ol>
</p>
<p>
    Other text text ...
</p>
Run Code Online (Sandbox Code Playgroud)

要么

<p>
    Text text text ...
</p>
<ol>
    <li>First element</li>
</ol>
<p>
    Other text text ...
</p>
Run Code Online (Sandbox Code Playgroud)

html

270
推荐指数
5
解决办法
12万
查看次数

标签 统计

html ×1