본문 바로가기
보드게임 긱 추천 게임
Wizard Thumbnail
BoardGameGeek 사이트에서 인기순위 상위 100개 중 랜덤 3개를 보여줍니다.
BGG
귀펀치토끼는 부서지지 않는다.
주소(D)
영웅은 공부 따원 안 한다네/HTML CSS

HTML CSS 체크박스 아이콘으로 대체

Font Awesome이 선행되어야 합니다!

<div class="lock">
    <input class="lock-element" type="checkbox" name="" id="secret"/>
    <div class="fa-xl lock-icon"></div>
</div>
.lock {
    display:inline-block;
    width: 30px;
    height: 30px;
    position:relative;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

.lock-element{
    display:block;
    position:absolute;
    left: -2px;
    top: -12px;
    width:100%;
    height:100%;
    z-index:99999;
    opacity:0;
}

.lock>input[type='checkbox']+div:before{
	content: '\f3c1';
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color:#FFD866;
}

.lock>input[type='checkbox']:checked+div:before{
    content: '\f023';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color:#FFD866;
}

 

완료
내 컴퓨터