반응형
Notice
Recent Posts
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Today
Total
관리 메뉴

H-Log

input radio css 변경하기 본문

dev-log/html·css·js

input radio css 변경하기

hong6v6 2022. 5. 4. 10:07
반응형

 

input[type='radio'],
input[type='radio']:checked {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 0.1rem;
}

input[type='radio'] {
  background-color: white;
  border: 2px solid gray;
}
input[type='radio']:checked {
   border: 7px solid red;
}

 

반응형
Comments