浮动“ol”元素

发布于 2024-12-28 06:56:39 字数 136 浏览 1 评论 0原文

这个 演示中,ol 不应与 <代码>div。为什么它不起作用,我该如何修复它? 谢谢!

In this demo, the ol shouldn't overlap at all with the div. Why isn't it working, and how do I fix it?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2025-01-04 06:56:39

您可以通过更改 list-style-position 来“修复”此问题:

ol {
    list-style-position: inside;
}

outside 值将显示包含块外部的计数器,就像在您的演示中一样。

演示:http://jsfiddle.net/3XwsP/

You can "fix" this by changing the list-style-position:

ol {
    list-style-position: inside;
}

A value of outside will display the counters outside the containing block, like in your demo.

Demonstration: http://jsfiddle.net/3XwsP/

王权女流氓 2025-01-04 06:56:39

您还没有浮动 ol 元素。如果你这样做,它就不会重叠。这是想要的结果吗?

You haven't floated the ol element. If you do that, it doesn't overlap. Is that the desired result?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文