Change color of radio button in CSS / CSS로 라디오버튼 색상변경

Change color of radio button in CSS

CSS로 라디오버튼 색상변경(순수 CSS 이용 or 이미지 사용)



  /*radio 버튼 색상변경 */
  input[type='radio'] {
    -webkit-appearance:none;
    width:16px;
    height:16px;
    border:1px solid darkgray;
     border-radius:50%;
    outline:none;
    background:#e6e6e6;
  }
  input[type='radio']:before {
    content:'';
    display:block;
    width:60%;
    height:60%;
    margin: 20% auto;  
    border-radius:50%;  
  }
  input[type='radio']:checked:before {
  	background:#008675;
  }


  /*라디오버튼 색상변경 이미지로*/
  input[type='radio']:before {
    content:'';
    position:absolute;
    top:-3px;
    left:3px;
    width:16px;
    height:16px;
    background:url('../img/radio_unchkd.png')no-repeat;
  }

  input[type='radio']:checked:before {
    content:'';
    position:absolute;
    top:-3px;
    left:3px;
    width:16px;
    height:16px;
    background:url('../img/radio_chkd.png')no-repeat;
  }

댓글

이 블로그의 인기 게시물

Lottery in javascript / 자바스크립트로 경품추첨기 만들기

Quick Menu(flying menu) in jQuery / 제이쿼리로 퀵메뉴 바 만들기

Accordion Menu in jQuery / 제이쿼리로 아코디언 메뉴 만들기