gpt4 book ai didi

html - 自定义复选框不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 14:15:06 25 4
gpt4 key购买 nike

我正在使用 bootstrap 3 和另一个 css 模板。我想使用模板对复选框进行样式化,但它不起作用,因为我无法使用输入区域。当我点击它时,什么也没有出现。这是代码:

HTML:

<div class="checkbox check-primary ">
<input type="checkbox" value="">
<label>Guardar usuario</label>
</div>

CSS:

.checkbox {
display: block;
min-height: 20px;
vertical-align: middle;
}
.checkbox input[type=checkbox] {
display: none;
}
.checkbox label {
display: inline-block;
cursor: pointer;
position: relative;
padding-left: 25px;
margin-right: 15px;
font-size: 13px;
margin-bottom: 6px;
color: #777a80;
transition: border 0.2s linear 0s,color 0.2s linear 0s;
}

.checkbox label:before {
content: "";
display: inline-block;
width: 17px;
height: 17px;
margin-right: 10px;
position: absolute;
left: 0px;
top: 1.4px;
background-color: #fff;
border: 1px solid #c2c6cb;
border-radius: 3px;
transition: border 0.2s linear 0s,color 0.2s linear 0s;
}

.checkbox input[type=checkbox]:checked + label::after {
font-family: 'FontAwesome';
content: "\F00C";
}

.checkbox label::after {
display: inline-block;
width: 16px;
height: 16px;
position: absolute;
left: 3.2px;
top: 0px;
font-size: 11px;
transition: border 0.2s linear 0s,color 0.2s linear 0s;
}

就这些。该复选框仅在我退出此规则时运行: .checkbox 输入[type=checkbox] { 显示:无;

如果我有很多错误,请耐心等待!这是我的第一个问题,我也是 html 初学者。

谢谢!!

最佳答案

点击标签不会改变输入状态,如果它不在 <label> 中。标签。您必须添加 id到复选框和属性 for=""将复选框 ID 添加到标签以使其工作:

<div class="checkbox check-primary ">
<input id="checkbox-1" type="checkbox" value="">
<label for="checkbox-1">Guardar usuario</label>
</div>

关于html - 自定义复选框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29478111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com