gpt4 book ai didi

css - 将自定义复选框图标放置在标签Bootstrap 4的右侧

转载 作者:行者123 更新时间:2023-12-04 23:12:43 24 4
gpt4 key购买 nike

我已经尝试了所有方法,但是无法在标签旁边放置复选框。如果它是复选框的常规类型,则可以将其移至标签的右侧。但是我无法对自定义复选框类型执行相同的操作。

<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="customCheck" name="example1">
<label class="custom-control-label" for="customCheck">Label</label>
</div>

最佳答案

自定义复选框是使用伪元素创建的,因此需要相对于标签调整其位置。

.custom-control.custom-checkbox{padding-left: 0;}

label.custom-control-label {
position: relative;
padding-right: 1.5rem;
}

label.custom-control-label::before, label.custom-control-label::after{
right: 0;
left: auto;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="customCheck" name="example1">
<label class="custom-control-label" for="customCheck">Label</label>
</div>

关于css - 将自定义复选框图标放置在标签Bootstrap 4的右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52366400/

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