单击时不选择自定义单选按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单击时不选择自定义单选按钮相关的知识,希望对你有一定的参考价值。
/* radio buttons */
.radio-container {
display: block;
position: relative;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding-left: 1.5em;
margin-bottom: 0.75em;
}
.radio-container input {
position: absolute;
opacity: 0;
cursor: pointer;
}
.radio-container input:checked .radio:after {
display: block;
}
.radio-container:hover .radio {
background: gray;
}
/* custom radio button */
.radio {
position: absolute;
top: 0;
left: 0;
height: 1em;
width: 1em;
background-color: transparent;
border: 1px solid gray;
border-radius: 50%;
}
.radio:after {
content: "";
position: absolute;
display: none;
top: 0;
left: 0;
width: 0.25em;
height: 0.25em;
border-radius: 50%;
background: white;
}
<form class="recharge">
<div>
<label class="radio-container" for="subscribe">
<input type="radio" id="one-time" name="recharge">
<span class="radio"></span>
Subscribe & Save 10%
</label>
</div>
<div>
<label class="radio-container" for="one-time">
<input type="radio" id="one-time" name="recharge">
<span class="radio"></span>
One Time Purchase
</label>
</div>
</form>
我已经在我的网站上为单选按钮添加了自定义样式,以便为它们提供自定义样式。我的html和CSS代码附在上面的代码段中。但是,现在当我点击输入时它没有选择。理想情况下,我希望在没有JS组件的情况下工作。
答案
请找到问题的解决方案:
我发现的问题之一是,单击单选按钮后没有指定颜色,并且缺少兄弟选择器。我特意添加了这些行:
.radio-container input:checked ~ .radio {
background-color: #2196F3;
}
希望能帮助到你!!谢谢。
以上是关于单击时不选择自定义单选按钮的主要内容,如果未能解决你的问题,请参考以下文章