我想自定义我的单选按钮,使其如下所示:
为此,我使用以下 css 和 html
HTML:
<div class="buttonSlider">
<input type="radio" value=".."></input>
<input type="radio" value=".."></input>
<input type="radio" value=".."></input>
</div>
CSS:
.buttonSlider {
font-size: 250%;
background: #ccffdd;
}
.buttonSlider input[type="radio"] { /* don't show the radio check items */
display: none;
}
.buttonSlider label {
display:inline-block;
background-color:#ddd;
padding:4px 11px;
font-family:Arial;
font-size:16px;
}
.buttonSlider input[type="radio"]:checked + .buttonSlider label {
background-color:#bbb;
}
但是,当我将此 CSS 应用于单选按钮时,这些按钮不可见。
有人可以帮助并向我详细说明他/她的解释吗?我对 CSS 很陌生。