Change Background-Color of a Radio Button

前端 未结 5 507
一生所求
一生所求 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:00

    To change the background color of a radio button input Only in IE

    HTML

      
    
    

    CSS

    input[type=radio] {
      width: 20px;
      height: 20px;
    }
    /* This will make the border gray when the button is not checked. */
    input[type=radio]:not(:checked)::-ms-check {
      border-color: gray; 
    }
    input[type=radio]::-ms-check {
      border-color: red; /* This will make the border red when the button is checked. */
      color: red; /* This will make the circle red when the button is checked. */
    }
    

提交回复
热议问题