본문 바로가기
CSS

input checkbox 만들기

by 영감은어디에 2024. 4. 25.

 

<div class="info">
   <input type="checkbox" id="agree" >
   <label for="agree">동의</label>
</div>

부트스트랩 체크 아이콘을 배경 이미지로 넣어 사용함 

input[type='checkbox'] { display:flex; align-items:center; justify-content:center; margin-top:1px; margin-right:15px; padding:0; border:1px solid #bbb; outline:none;min-width: 24px; width:24px; height:24px; cursor:pointer; appearance:none } 
input[type='checkbox']::after { display:none; font-family:"bootstrap-icons", sans-serif; font-size:1rem; font-weight:bold; color:white; content:'\F633' } 
input[type='checkbox']:checked { background-color:#4a32e3 } 
input[type='checkbox']:checked::after { display:block } 
.info label { cursor:pointer; color: #E8E8E8; }

'CSS' 카테고리의 다른 글

:not(.클래스명)  (0) 2024.04.26
scroll 스크롤바 css  (0) 2024.04.25
tab 라디오버튼으로 만들기  (0) 2024.04.25
텝 css  (0) 2024.04.25
input checkbox 스위치모양  (0) 2024.04.25
Grid 레이아웃 한방 정리. 고정값 가변값  (0) 2024.04.25
pretendard 프리텐다드 웹폰트 적용하기  (0) 2023.06.11
ion icon  (0) 2023.04.28