选中的收音机的父标签中的CSS之前

时间:2018-11-29 22:21:42

标签: html css

如果未选中,我尝试在输入广播的父标签中使用CSS,而不使用javascript。我尝试过,但没有成功;我的html代码是

<div class="type">
    <label><input type="radio" name="std" value="10">Public</label>
    <label><input type="radio" name="std" value="20">Member</label>
    <label><input type="radio" name="std" value="30">VIP</label>
</div>

我尝试了

.type label:checked:before
{
    content: "\e955";
}

我也尝试过

.type label:before input[type="radio"]:checked
{
    content: "\e955" !important;
}

0 个答案:

没有答案