반응형
checkbox 색깔을 바꾸고 싶어서 input 의 checkbox 타입을 쓰지 않고 font Awesome 에서 체크 아이콘을 가져와서 만들어보겠다.
- HTML
<label class="--object-check">
<input name="termAgree" type="checkbox">
<span class="--checkbox">
<i class="--icon fa-solid fa-check"></i>
</span>
<span class="text">위 서비스 이용약관 및 개인정보 처리방침을 읽어보았고 이해하였으며 동의합니다.</span>
</label>
i 태그는 font Awesome 에서 뽀려온 거다.
- CSS
/* 체크박스 */
.--object-check {
align-items: center;
cursor: pointer;
display: flex;
flex-display: row;
justify-content: flex-start;
user-select: none;
}
.--object-check > input[type=checkbox] {
display: none;
}
.--object-check> .--checkbox {
width: 1.25rem;
height: 1.25rem;
align-items: center;
background-color: rgb(255,255,255);
border: 0.1rem solid rgba(0, 0, 0, 17%);
border-radius: 0.25rem;
color: rgb(255,255,255);
display: flex;
flex: 0 0 1.25rem; /*화면 크기를 줄여도 안잘림*/
flex-direction: row;
justify-content: center;
margin-right: 0.75rem;
overflow: hidden;
}
.--object-check > input[type=checkbox]:checked ~ .--checkbox {
background-color: rgba(11, 94, 4, 80%);
}
.--object-check> .--checkbox > .--icon {
top: 0.0625rem;
font-size: 1rem;
position: relative;
}
- 완성 초록색 깔맞춤 넘 좋다
반응형
'웹개발 > 기타' 카테고리의 다른 글
[웹개발 - 회원가입] 비밀번호 암호화 (0) | 2023.02.11 |
---|---|
[웹개발] parameter 0 of constructor in ~ 오류 (0) | 2023.02.11 |
[웹개발] CSS 밑줄 긋는 효과 (0) | 2023.02.10 |
[웹개발] thymeleaf 를 이용한 공통 Header 만들기 (0) | 2023.02.09 |
[웹개발] Mybatis (0) | 2023.02.09 |