需要将正常的复选框打勾更改为 bootstrap 复选框打勾
Need to change the normal checkbox tick as bootstrap checkbox tick
我有 2 个复选框,其中一个是使用 Bootstrap 创建的,一个是正常的。我想将普通复选框显示为 bootstrap 勾选框。
下面是我的代码:
.custom-checkbox-input {
position: relative;
z-index: 1;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem;
}
.custom-checkbox-input .form-check-input {
width: 20px;
height: 20px;
}
.custom-checkbox-input .form-check-input::after {
content: '';
display: inline-block;
width: 20px;
height: 20px;
border: solid 1px grey;
border-radius: 2px;
}
.custom-checkbox-input .form-check-input:checked::after {
width: 20px;
height: 20px;
border: solid 1px red;
content: '✔';
background-color: red;
color: white;
text-align: center;
}
.custom-checkbox-input .form-check-input .custom-color-grey::after {
background-color: grey;
}
.custom-checkbox-input .form-check-input .custom-color-white::after {
background-color: white;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<div class="custom-checkbox-input">
<input class="form-check-input custom-color-white" type="checkbox">
</div>
如果你想让两个复选框与刻度线保持一致,我的建议是使用字体很棒的图标。
.custom-checkbox-input {
position: relative;
z-index: 1;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem;
}
.custom-checkbox-input .form-check-input {
width: 20px;
height: 20px;
}
.custom-checkbox-input .form-check-input::after {
content: '';
display: inline-block;
width: 20px;
height: 20px;
border: solid 1px grey;
border-radius: 2px;
}
.custom-checkbox-input .form-check-input:checked::after {
width: 20px;
height: 20px;
border: solid 1px red;
content: '\f00c';
font-family: "Font Awesome 5 Free";
font-weight:900;
background-color: red;
color: white;
text-align: center;
font-size:13px;
position:relative;
top:-2px;
}
.custom-checkbox-input .form-check-input .custom-color-grey::after {
background-color: grey;
}
.custom-checkbox-input .form-check-input .custom-color-white::after {
background-color: white;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<div class="custom-checkbox-input">
<input class="form-check-input custom-color-white" type="checkbox">
</div>
我有 2 个复选框,其中一个是使用 Bootstrap 创建的,一个是正常的。我想将普通复选框显示为 bootstrap 勾选框。
下面是我的代码:
.custom-checkbox-input {
position: relative;
z-index: 1;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem;
}
.custom-checkbox-input .form-check-input {
width: 20px;
height: 20px;
}
.custom-checkbox-input .form-check-input::after {
content: '';
display: inline-block;
width: 20px;
height: 20px;
border: solid 1px grey;
border-radius: 2px;
}
.custom-checkbox-input .form-check-input:checked::after {
width: 20px;
height: 20px;
border: solid 1px red;
content: '✔';
background-color: red;
color: white;
text-align: center;
}
.custom-checkbox-input .form-check-input .custom-color-grey::after {
background-color: grey;
}
.custom-checkbox-input .form-check-input .custom-color-white::after {
background-color: white;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<div class="custom-checkbox-input">
<input class="form-check-input custom-color-white" type="checkbox">
</div>
如果你想让两个复选框与刻度线保持一致,我的建议是使用字体很棒的图标。
.custom-checkbox-input {
position: relative;
z-index: 1;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem;
}
.custom-checkbox-input .form-check-input {
width: 20px;
height: 20px;
}
.custom-checkbox-input .form-check-input::after {
content: '';
display: inline-block;
width: 20px;
height: 20px;
border: solid 1px grey;
border-radius: 2px;
}
.custom-checkbox-input .form-check-input:checked::after {
width: 20px;
height: 20px;
border: solid 1px red;
content: '\f00c';
font-family: "Font Awesome 5 Free";
font-weight:900;
background-color: red;
color: white;
text-align: center;
font-size:13px;
position:relative;
top:-2px;
}
.custom-checkbox-input .form-check-input .custom-color-grey::after {
background-color: grey;
}
.custom-checkbox-input .form-check-input .custom-color-white::after {
background-color: white;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<div class="custom-checkbox-input">
<input class="form-check-input custom-color-white" type="checkbox">
</div>