我试图设置复选框输入的样式。我知道因浏览器而不可能。因此我输入[type = checkbox]隐藏了可见性,并且我使用FontAwesome图标设置了标签样式,在检查输入时显示正常。我的问题是,如果我将输入放在标签的相同位置,则由于标签而未检查输入。所以我必须将输入放在标签旁边,但这对用户来说不是好事。因此,如果有人有技巧或解决方案,那就太棒了。
.log-in{
background-color:$primary-color-opacity;
padding: 7% 9% 7%;
text-align: center;
p{
text-align:left;
}
input{
width:40%;
height:40px;
padding:1%;
}
input[type=checkbox]{
opacity: 0;
vertical-align: middle;
width:20px;
color:$error-color;
}
a{
margin-top:3%;
}
}
input[type=checkbox] + label::before {
content: " ";
position: absolute;
left: 55px;
top: 122px;
width: 18px;
height: 20px;
display: block;
background: white;
border: none;
}
input[type=checkbox] + label::after {
content: "\f00c";
font-family: 'FontAwesome';
color: $selector-color;
position: absolute;
left: 55px;
top: 122px;
width: 23px;
height: 23px;
display: block;
z-index: 1;
opacity: 0;
}
input[type=checkbox]:checked + label::after {
opacity: 1;
}

<div class="log-in" >
<p>Para poder participar debe aceptar las Condiciones particulares y el Plan de liquidación.</p>
<div><input type="checkbox" ng-model="BscCtrl.conditions" ng-change="BscCtrl.checkConditions()">
<label>Acepto las <a href="" class="color-link">Condiciones particulares</a> de la subasta</label>
</div>
</div>
&#13;
答案 0 :(得分:2)
为您的标签添加与您的复选框输入for=""
属性相对应的id=""
属性 - 这样,当点击标签时,系统会选中复选框。
我已经使用了&#34; check1&#34;作为以下示例中的值:
<div class="log-in" >
<p>Para poder participar debe aceptar las Condiciones particulares y el Plan de liquidación.</p>
<div>
<input id="check1" type="checkbox" ng-model="BscCtrl.conditions" ng-change="BscCtrl.checkConditions()">
<label for="check1">Acepto las <a href="" class="color-link">Condiciones particulares</a> de la subasta</label>
</div>
</div>
答案 1 :(得分:1)
/* custom checkboxes CSS */
.custom-checkmark {
position: relative;
}
.custom-checkmark input[type=checkbox]{
opacity:0;
}
.custom-checkmark label {
margin-left: 25px;
}
.custom-checkmark input[type=checkbox]:checked+label:before,.custom-checkmark input[type=checkbox]:hover+label:before {
border-color:#369FF4;
}
.custom-checkmark input[type=checkbox]:checked+label:before {
content: "\2713";
line-height: 1.2;
}
.custom-checkmark input[type=checkbox]+label:before, .custom-checkmark input[type=radio]+label:before {
content: "";
display: inline-block;
border: 1px solid #C9C9C9;
/* font-family: 'cw-icons'; */
background-color: #FFF;
text-align: center;
border-radius: 2px;
color: #369FF4;
}
.custom-checkmark input[type=checkbox], .custom-checkmark label:before {
position: absolute;
width: 20px;
height: 20px;
left: 0;
top: 0;
}
<div class="custom-checkmark">
<input id="checkbox" type="checkbox">
<label class="checkbox-label" for="checkbox">make this a recurring monthly gift</label>
</div>