:focus-within (하위 요소에 focus된 객체가 있을 시)
https://developer.mozilla.org/ko/docs/Web/CSS/:focus-within
:focus-within는 부모요소에게 적용시에 하위 요소중에 focus 상태가 있을시에 부모요소에게 적용되는 css이다.
<div>
<input type="text" id="inputText" />
</div>
<style>
div {
padding: 3rem;
}
div:focus-within {
background: red;
}
</style>
위와 같은 상황 일경우 상단 div
요소에 :focus-within
를 적용시에
하단의 input
에 focus
된 경우 div
에 background: red;
속성이 적용된다.
'HTML > css' 카테고리의 다른 글
pointer-events (포인터 이벤트 제어) (0) | 2022.10.12 |
---|---|
:root -- var (변수선언) (0) | 2021.04.03 |
figure, figcaption (0) | 2020.04.05 |
text-indent (0) | 2020.03.30 |
댓글
이 글 공유하기
다른 글
-
pointer-events (포인터 이벤트 제어)
pointer-events (포인터 이벤트 제어)
2022.10.12 -
:root -- var (변수선언)
:root -- var (변수선언)
2021.04.03 -
figure, figcaption
figure, figcaption
2020.04.05 -
text-indent
text-indent
2020.03.30