일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Logrus
- 배포 프로세스
- intellij ide
- 오블완
- Intellij
- 배포 파이프라인
- gitops
- 사설 ip
- http 413
- Infra
- 디자인패턴
- GoF
- golang
- UnBuffered channel
- 윈도우키보드
- AWS
- apollo router
- notification system
- 컴포지트패턴
- Golines
- Buffered channel
- System Design
- elasticsearch
- Kubernetes
- 대규모 시스템 설계
- GoF 디자인패턴
- 티스토리챌린지
- goland
- go
- body size
- Today
- Total
Fall in IT.
checkbox 디자인 변경하는 방법 본문
안녕하세요.
웹 작업을 하거나 하이브리드앱을 만들때 checkbox 또는 radio 버튼을 커스터마이징 해야하는 경우가 많습니다.
이때 간단하게 checkbox 디자인을 변경하는 방법에 대해서 알아봅니다.
체크박스 custom 디자인 순서
- HTML을 사용하여 기본 체크박스 만들기
- CSS를 사용하여 기본 체크박스 없애기
- CSS를 사용하여 디자인한 체크박스 만들기
체크박스 만들기 HTML
<div class="checkbox-container">
<input type="checkbox" id="is-subscription">
<label for="is-subscription">구독신청</label>
</div>
체크박스 만들기 CSS
.checkbox-container {
position: relative;
}
// 기본 체크박스 없애기
.checkbox-container input[type="checkbox"] {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip:rect(0,0,0,0);
border: 0
}
// 웹의 경우 커서에 pointer 설정
.checkbox-container input[type="checkbox"] + label {
display: inline-block;
position: relative;
cusor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
// 새로운 디자인의 체크박스 만들기
.checkbox-container input[type="checkbox"] + label:before {
content: ' ';
display: inline-block;
width: 18px;
height: 18px;
line-height: 18px;
margin: -2px 8px 0 0;
text-align: center;
vertical-align: middle;
background: #fafafa;
border: 1px solid #cacece;
border-radius: 3px;
box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}
.checkbox-container input[type="checkbox"] + label:active:before,
.checkbox-container input[type="checkbox"]:checked + label:active:before {
box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
.checkbox-container input[type="checkbox"]:checked + label:before {
content: '\2713';
color: #314ca2;
text-shadow: 1px 1px white;
background: #f1f4ff;
border-color: #adb8c0;
box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}
모두 즐거운 코딩하세요~
'프로그래밍언어 > Html & Css' 카테고리의 다른 글
CSS - backgroundRepeat 사용방법 (0) | 2019.03.26 |
---|---|
html Input type password, tel 두 가지 사용하는 방법 (0) | 2019.01.08 |
패딩 영역은 제외하고 백그라운드 색상 입히는 방법 (0) | 2017.12.07 |
div 태그 수직(vertical) 가운데 정렬하는 방법 (0) | 2017.10.12 |
div 태그 수평(horizontal) 가운데 정렬하는 방법 (0) | 2017.10.11 |