[css] 체크박스
/* 라운드진 체크박스 */ input[type="checkbox"] { -webkit-appearance: none; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; width: 20px; height: 20px; cursor: pointer; outline: none !important; border: 2px solid #9999; border-radius: 4px; vertical-align: middle; } /* 여기가 체크표시를 위한 코드 */ input[type="checkbox"]::before { content: "\2713"; position: absolute; top: 50%; left: 50%; ..
2022.03.10