我有以下代码:
<div class="container-fluid mt-5">
<div class="row">
<div class="col-10">
Hello
<br>
Hello
</div>
<div class="col-2">
<input type="checkbox" class="w-100 h-100">
</div>
</div>
</div>
我不明白为什么桌面显示的复选框大小正在改变。它是否应该具有相同的移动和桌面高度/宽度,因为我使用h-100
和w-100
专门设置其大小?
答案 0 :(得分:0)
class = 'w-100 h-100'
迫使他们使用100%的宽度和高度。如果您不需要,请尝试设置宽度和高度,而不是使用此类。
查看课程:
.h-100 {
height: 100%!important;
}
.w-100 {
width: 100%!important;
}
答案 1 :(得分:0)
有一些问题。
复选框位于col-2
内,宽度越来越窄。 height:100%
和width:100%
都相对于父容器(col-2
)的大小。此外,height:100%
仅在父级定义的高度为explained here时以及其他几个答案中有效。
此外,col-2
具有影响输入大小的填充。