作者:常山他爹没有JJ2000_836 | 来源:互联网 | 2023-02-02 14:56
我在我的Angular应用程序中使用Bootstrap,所有其他样式都正常运行,但复选框样式却没有.它看起来像普通的旧复选框.
它看起来像什么:
我想用Bootstrap样式看起来像什么:
1> Paolo Forgia..:
由于Bootstrap 3没有复选框样式,我发现自定义制作的 Bootstrap风格非常好.
复选框
.checkbox label:after {
content: '';
display: table;
clear: both;
}
.checkbox .cr {
position: relative;
display: inline-block;
border: 1px solid #a9a9a9;
border-radius: .25em;
width: 1.3em;
height: 1.3em;
float: left;
margin-right: .5em;
}
.checkbox .cr .cr-icon {
position: absolute;
font-size: .8em;
line-height: 0;
top: 50%;
left: 15%;
}
.checkbox label input[type="checkbox"] {
display: none;
}
.checkbox label input[type="checkbox"]+.cr>.cr-icon {
opacity: 0;
}
.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled+.cr {
opacity: .5;
}
2> Sebastian Br..:
您必须使用Bootstrap版本4与custom-*
类来获得此样式: