Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- gson
- docker
- LOG4J
- nginx
- wildfly
- JavaScript
- Spring
- BPMN
- kubectl
- Kubernetes
- Windows
- useEffect
- dbeaver
- intellijIDEA
- log4j2
- MySQL
- react
- nodejs
- VSCode
- Java
- mybatis
- tibero
- gradle
- jetbrains
- JPA
- database
- springboot
- NCP
- IntelliJ
- Git
Archives
- Today
- Total
목록CSS (2)
두 손끝의 창조자
html5 button tag, a tag focus 기본값 좀 제거해보자
요소에 키보드 등으로 포커스가 됐을 때 선택된 요소를 하이라이트 해주는 스타일을 변경하고자 할 때 button:focus-visible { outline: 2px solid rgba(41, 182, 198, 0.50); } a:focus-visible { outline: 2px solid rgba(41, 182, 198, 0.50); } focus-visible 주도선택자를 이용해서 outline을 변경한다.
CSS
2024. 2. 19. 16:38
checkbox focus 기본값 좀 제거해보자.
checkbox 를 좀 이쁘게 꾸며보자. [type='checkbox'] { vertical-align: middle; appearance: none; border-color: #29b6c6; transition: border 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; border-radius: 20%; } [type='checkbox']:focus { box-shadow: 0 0 0 0.2rem rgba(41, 182, 198, 0.25); } [type='checkbox']:checked { background-color: #29b6c6; } [type='checkbox']:checked..
CSS
2024. 2. 19. 12:50