gpt4 book ai didi

twitter-bootstrap - 如何向 btn-group-vertical 添加标签?

转载 作者:行者123 更新时间:2023-12-02 07:59:25 24 4
gpt4 key购买 nike

我使用“btn-group-vertical”创建了一个非常简单的单选按钮。

<div class="btn-group btn-group-vertical" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"><span class="fa fa-lock"></span> Private
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2"><span class="fa fa-unlock"></span> Public
</label>
</div>

enter image description here

但我找不到一种简单的方法来在每个按钮的右侧添加一些标签(就像标准单选按钮一样)。

enter image description here

最佳答案

我认为你做不到。 btn-group 和 btn-group-vertical 绑定(bind)特定的一组元素来构造一个结构(垂直按钮)。添加额外的 html 元素将破坏此结构。

我认为寻找替代方案对您来说是最好的选择。考虑使用工具提示 ( http://getbootstrap.com/javascript/#tooltips )。

<div class="btn-group btn-group-vertical" data-toggle="buttons">
<label data-toggle="tooltip" data-placement="right" data-container="body" title="tooltip on first input!" class="btn btn-primary">
<input type="radio" name="options" id="option1"><span class="fa fa-lock"></span> Private
</label>
<label data-toggle="tooltip" data-placement="right" data-container="body" title="tooltip on second input!" class="btn btn-primary">
<input type="radio" name="options" id="option2"><span class="fa fa-unlock"></span> Public
</label>
</div>

关于twitter-bootstrap - 如何向 btn-group-vertical 添加标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20607059/

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