我试图在几页上将复选框的大小加倍.我如何在CSS中实现这一点?我不想设置悬停的样式.
想法?
我正在使用官方引导程序文档中的代码创建一个简单的复选框:
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck" name="example1">
<label class="custom-control-label" for="customCheck">Check this custom checkbox</label>
</div>
Run Code Online (Sandbox Code Playgroud)
我想知道如何使复选框比当前大?我曾尝试编辑 csscustomCheck
并更改高度和宽度属性,但这不会增加框的大小。