gpt4 book ai didi

html - 我如何将图标添加到 Bootstrap 下拉列表

转载 作者:太空狗 更新时间:2023-10-29 13:41:46 26 4
gpt4 key购买 nike

我有这个代码

        <div class="btn-group" dropdown>
<button type="button" class="btn btn-danger">Action</button>
<button type="button" class="btn btn-danger dropdown-toggle" dropdown-toggle>
<span class="caret"></span>
<span class="sr-only">Split button!</span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>

看起来像

enter image description here

我想添加像这样的 cog insteaqd 文本的图标

enter image description here

我试过了

<button type="button" class="glyphicon glyphicon-cog"></button>

但是不工作

最佳答案

对于按钮,图标需要作为按钮的内容进入按钮内部,所以不是 <button type="button" class="glyphicon glyphicon-cog"></button>应该是

<button type="button" class="btn">
<span class="glyphicon glyphicon-cog"></span>
</button>

编辑:要在 Bootstrap 中添加插入符号,您可以使用 <span class="caret"></span>

因此,获得带有齿轮和下拉插入符号的按钮的最终结果是:

<button type="button" class="btn">
<span class="glyphicon glyphicon-cog"></span><span class="caret"></span>
</button>

当我将该代码粘贴到 Bootstrap 的主页时,我得到了这个: cog button

关于html - 我如何将图标添加到 Bootstrap 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30318231/

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