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
- iframe
- html 태그
- height속성
- focus 의사클래스
- Checked 의사 클래스
- background-color 속성
- 인접 형제 결합자
- go live
- Live Server
- 임베디드
- id 선택자
- 일반 형제 결합자
- html tag i
- css
- tag html
- html
- padding 속성
- sup태그
- i 태그
- 전체 선택자
- not 의사클래스
- RGB
- iframe 태그
- 자식결합자
- reveal in file explorer
- sub태그
- width속성
- RGBA
- br 태그
- 아두이노
Archives
- Today
- Total
so woon!
[의사 클래스] Checked 의사 클래스(Pseudo Class) 본문
학습일 : 2022. 09. 05
Checked 의사 클래스
Checked 의사 클래스(Pseudo Class)는 어떠한 선택자에 의해 선택된 요소가 체크 되어 있는 상태에 대한 선택자이다.
주로 type이 checkbox인 input을 위해 사용한다.
다음과 같이 작성한다. ("는 없는 것으로 한다.)
"선택자":checked {
"속성" : "속성 값";
"속성" : "속성 값";
"속성" : "속성 값";
}
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>checked 의사 클래스</title>
<style>
.checkbox:checked❤ {
transform: rotate(45deg);
}
</style>
</head>
<body>
<input class="checkbox" type="checkbox">❤
</body>
</html>
==============실행결과=============
'CSS > 개념정리' 카테고리의 다른 글
[의사 클래스] first-child 및 nth-child, last-child 의사 클래스 (0) | 2022.09.07 |
---|---|
[의사클래스] disabled 의사 클래스 (0) | 2022.09.07 |
[의사 클래스] Active 및 Hover 의사 클래스 (0) | 2022.09.06 |
[속성] position 및 top, right, bottom, left 속성 (0) | 2022.09.06 |
[속성] width 및 height 속성 (0) | 2022.09.06 |
Comments