作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法将Bootstrap 4 beta复选框的大小更改为更大的复选框?
我几乎尝试过更改样式,但这没有用。
谢谢!
最佳答案
目前存在问题,我已将其报告给Bootstrap。在解决此问题之前,请执行以下操作:
首先,使用form-control-lg
类。一旦解决了该问题,您将需要使用该类。
在问题解决之前,添加以下css:
.custom-control-label::before,
.custom-control-label::after {
top: .8rem;
width: 1.25rem;
height: 1.25rem;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<style>
.custom-control-label::before,
.custom-control-label::after {
top: .8rem;
width: 1.25rem;
height: 1.25rem;
}
</style>
<div class="custom-control form-control-lg custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">Check this custom checkbox</label>
</div>
关于bootstrap-4 - 更改Bootstrap 4复选框的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48293920/
我是一名优秀的程序员,十分优秀!