gpt4 book ai didi

html - unordered 不会删除使用 class unstyled 时的样式

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

我是 Bootstrap 的初学者。我正在尝试使用无样式类取消列表样式,但它没有删除每个选项最左侧的黑点如何删除这个黑点请指导我的代码是

<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>

<body>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<ul class="unstyled">
<li>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>Option 1
</li>
<li>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">Option 2
</li>
<li><input type="radio" name="optionsRadios" id="optionsRadios3" value="option3">option3</li>
<li><input type="radio" name="optionsRadios" id="optionsRadios4" value="option4">option4</li>
<li><input type="radio" name="optionsRadios" id="optionsRadios5" value="option5">option5</li>
</ul>
</body>
</html>

enter image description here

最佳答案

Bootstrap 3+

从 Bootstrap 3 开始,您将使用 list-unstyled类来实现这一目标。

Unstyled - Remove the default list-style and left-margin on list items (immediate children only). This only applies to immediate children list items, meaning you will need to add the class for any nested lists as well.

示例:

<ul class="list-unstyled">
<li>...</li>
</ul>

Bootstrap 2

如果仍在使用 Bootstrap 2,您将使用 unstyled类。

Unstyled - Remove the default list-style and left padding on list items (immediate children only).

示例:

<ul class="unstyled">
<li>...</li>
</ul>

关于html - unordered 不会删除使用 class unstyled 时的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17002128/

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