CSS
가상 클래스 선택자(Pseudo-Class Selector) - :enabled, :disabled, :checked
자라나라나무나무나
2022. 7. 1. 17:18
See the Pen Untitled by Jeong-Dagyeong (@jeong-dagyeong) on CodePen.
input type이 radio나 checkbox인 경우에는
input에 checked를 해놓으면 사용자에게 체크되어진 상태로 보여지게 할 수 있다.
<input type="radio" name="my-input" id="yes" checked/>
<label for="yes">Yes</label>