CSS - 单选按钮上的自定义样式

时间:2016-07-14 21:26:30

标签: css radio checked

我这里有一个jsfiddle - https://jsfiddle.net/5qmnptuk/4/

我试图改变自定义单选按钮。

我已经隐藏了单选按钮,然后在标签上创建了新的单选按钮。

我试图使用:选中以确定所点击的样式但不起作用

任何人都可以理解为什么这不起作用。

    .form-group{
        margin-top: 30px;
    }

    label{
        cursor: pointer;
        display: inline-block;
        position: relative;
        padding-right: 25px;
        margin-right: 15px;
    }

    label:after{
        bottom: -1px;
        border: 1px solid #aaa;
        border-radius: 25px;
        content: "";
        display: inline-block;
        height: 25px;
        margin-right: 25px;
        position: absolute;
        right: -31px;
        width: 25px;
    }

    input[type=radio]{
        display: none;
    }

    input[type=radio]:checked + label{
        content: \2022;
        color: red;
        font-size: 30px;
        text-align: center;
        line-height: 18px; 
    }

2 个答案:

答案 0 :(得分:6)

您的代码存在一些问题:

1 - 您的输入需要之前 label

+~ CSS选择器仅在 DOM中的元素之后选择兄弟姐妹,因此您需要在标签之前输入。

2 - 您的标签未分配给输入

要分配标签,请使用for属性,并为输入提供ID:

  <div class="form-group">
    <input type="radio" id="custom" />
    <label for="custom">Label</label>
  </div>

3 - 伪元素的内容缺少引号。

4 - 您没有将样式应用于标签的after元素,而是直接将它们应用于标签:

 input[type=radio]:checked + label{
    content: \2022;
    color: red;
    font-size: 30px;
    text-align: center;
    line-height: 18px; 
}

选择标签,同时:

input[type=radio]:checked + label:after{
    content: "\2022";
    color: red;
    font-size: 30px;
    text-align: center;
    line-height: 18px; 
}

选择after元素

Updated, working JSFiddle

答案 1 :(得分:0)

更新了fiddle,其中我已添加了广播和标签需求的ID

for="radioId" 

能够像那样工作

标签也需要在单选按钮之后