gpt4 book ai didi

css - 使用 Bootstrap 均匀分开单选按钮

转载 作者:太空宇宙 更新时间:2023-11-03 23:02:50 25 4
gpt4 key购买 nike

我的单选按钮靠得太近了,我希望使用 bootstrap 网格系统将它们均匀地显示在一行中。关于如何完成此操作的任何想法? enter image description here

    <div class="radio">
<div class="row">
<div class="col-md-12">
<label>
<input id="visitors_radio" name="user[role]" type="radio">
Visitors
</label>
<label>
<input id="staff_radio" name="user[role]" type="radio">
Staff
</label>
<label>
<input id="volunteer_radio" name="user[role]" type="radio">
Volunteer
</label>
</div>
</div>
</div>

最佳答案

<div class="radio">
<div class="row">
<div class="col-md-4">
<label>
<input id="visitors_radio" name="user[role]" type="radio">
Visitors
</label>
</div>
<div class="col-md-4">
<label>
<input id="staff_radio" name="user[role]" type="radio">
Staff
</label>
</div>
<div class="col-md-4">
<label>
<input id="volunteer_radio" name="user[role]" type="radio">
Volunteer
</label>
</div>
</div>
</div>

利用 Bootstrap 网格来帮助您实现这一目标。

关于css - 使用 Bootstrap 均匀分开单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35818272/

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