본문 바로가기
웹개발/기타

[웹개발] checkbox 안에 font Awesome 아이콘 넣기

by 오엥?은 2023. 2. 11.
반응형

 

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;
}

 

  • 완성 초록색 깔맞춤 넘 좋다

반응형