pointer-events (포인터 이벤트 제어)
https://www.w3schools.com/cssref/css3_pr_pointer-events.asp
CSS pointer-events property
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
pointer-events 속성은 말 그대로 pointer의 events를 제어한다.
예전에는 a
태그의 이벤트 속성을 제어할때 자바스크립트를 가지고 제어했지만,
이제는 css
에서 지원해주는 속성으로 컨트롤이 가능해졌다.
크게 2가지 auto
와 none
이 가장 많이 쓰이며 나머지 속성도 많지만 svg
를 위한것이라 크게 쓰이지 않는다.
<a href="#">
링크
</a>
<style>
a {
pointer-events: none;
}
</style>
위와 같이하게 되면 a
태그의 클릭 이벤트를 막을 수 있다.
'HTML > css' 카테고리의 다른 글
:focus-within (하위 요소에 focus된 객체가 있을 시) (0) | 2022.10.22 |
---|---|
:root -- var (변수선언) (0) | 2021.04.03 |
figure, figcaption (0) | 2020.04.05 |
text-indent (0) | 2020.03.30 |
댓글
이 글 공유하기
다른 글
-
:focus-within (하위 요소에 focus된 객체가 있을 시)
:focus-within (하위 요소에 focus된 객체가 있을 시)
2022.10.22 -
:root -- var (변수선언)
:root -- var (변수선언)
2021.04.03 -
figure, figcaption
figure, figcaption
2020.04.05 -
text-indent
text-indent
2020.03.30