xxxxxxxxxx
1
<h3 class="mb-3">
2
Buggy:
3
</h3>
4
5
<div class="row">
6
<div class="col-3">
7
<div class="form-check form-switch">
8
<input class="form-check-input" type="checkbox" id="switch" />
9
<label class="form-check-label" for="switch">This is a very long label for the switch that should wrap</label>
10
</div>
11
</div>
12
13
<div class="col-3">
14
<div class="form-check">
15
<input class="form-check-input" type="checkbox" id="checkbox" />
16
<label class="form-check-label" for="checkbox">This is a very long label for the checkbox that should wrap</label>
17
</div>
18
</div>
19
20
<div class="col-3">
21
<div class="form-check">
22
<input class="form-check-input" type="radio" id="radio" />
23
<label class="form-check-label" for="radio">This is a very long label for the radio that should wrap</label>
24
</div>
25
</div>
26
</div>
27
28
<h3 class="my-3">
29
Bugfix:
30
</h3>
31
32
<div class="row bugfix">
33
<div class="col-3">
34
<div class="form-check form-switch">
35
<input class="form-check-input" type="checkbox" id="switch2" />
36
<label class="form-check-label" for="switch2">This is a very long label for the switch that should wrap</label>
37
</div>
38
</div>
39
40
<div class="col-3">
41
<div class="form-check">
42
<input class="form-check-input" type="checkbox" id="checkbox2" />
43
<label class="form-check-label" for="checkbox2">This is a very long label for the checkbox that should wrap</label>
44
</div>
45
</div>
46
47
<div class="col-3">
48
<div class="form-check">
49
<input class="form-check-input" type="radio" id="radio2" />
50
<label class="form-check-label" for="radio2">This is a very long label for the radio that should wrap</label>
51
</div>
52
</div>
53
</div>
54
55
xxxxxxxxxx
1
body {
2
padding: 5rem;
3
}
4
5
.bugfix .form-switch .form-check-input,
6
.bugfix .form-check-input[type="checkbox"],
7
.bugfix .form-check-input[type="radio"] {
8
margin-right: 0;
9
}
10
11
.bugfix .form-check-input[type="checkbox"] ~ .form-check-label,
12
.bugfix .form-check-input[type="radio"] ~ .form-check-label {
13
margin-left: 6px;
14
}
15
16
.bugfix .form-switch .form-check-input ~ .form-check-label {
17
margin-left: 8px;
18
}
1
1
Console errors: 0