Change Background-Color of a Radio Button

前端 未结 5 504
一生所求
一生所求 2021-01-15 12:35

Is it possible to change the background color of a radio button input in Firefox/Chrome like in IE? (Without using images)

Run this in both IE(<9) and Firefox/Chr

5条回答
  •  清酒与你
    2021-01-15 13:02

    I know this is an old question bit it still comes up quite high if you google the question so here is my solution.

    Style a element that is directly after the radio button.

    HTML

    
    
    
    

    CSS

    input[type=radio]{
        display:none;
    }
    input[type=radio] + label{
        border: 1px solid black;
        background-color: red;
        border-radius: 50%;
        display: block;
        ...
    }
    input[type=radio]:checked + label{
        background-color: green;
    }
    

提交回复
热议问题