gpt4 book ai didi

html - Bootstrap 导致元素符号从无序列表中消失

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:40 24 4
gpt4 key购买 nike

我在启用 Bootstrap 的 fiddle 和干净的非 Bootstrap fiddle 中有相同的代码。

为什么一个有列表要点而另一个没有?

如何让元素符号显示在 Bootstrap fiddle 的无序列表中?


代码如下:

<ul>
<li>List Item</li>
<li>List Item2</li>
<li>List Item3</li>
</ul>

这是两个 fiddle :

Bootstrap

Non-Bootstrap

编辑:当我有一个带有 Bootstrap 的 html 文件时,问题仍然存在。

<!DOCTYPE html>
<html>

<head>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</head>
<body>
<ul><li>List Element</li><ul>
</body>
</html>

最佳答案

正是normalize.cssul中将list-style重置为none

SS

你已经在你的 bootstrap fiddle 中检查过了,但没有在你的普通 fiddle 中检查过。


The problem still persists with an html file with bootstrap imported

您没有在更新的代码中正确关闭 ul

看这个external file (以更好地模拟您的本地文件)并修复您的代码。

堆栈片段也行

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<ul>
<li>List Element</li>
</ul>

关于html - Bootstrap 导致元素符号从无序列表中消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38155694/

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