pointerEvents 쓰면 된다.
마우스 이벤트 특정상황에서 막고 싶을 때.
리액트 스타일에서도 쓸수있음.
style={
type !== null
? type === "contest"
? { animation: "1s moveRight1 forwards" }
: {
animation: "1s fadeout forwards",
pointerEvents: "none",
}
: {}
}
'frontend > CSS&Design' 카테고리의 다른 글
[CSS] 속성 선언 순서 (0) | 2021.08.07 |
---|---|
[CSS] CSS구축 Component-Driven, BEM,7-1pattern (0) | 2021.08.02 |
[CSS] CSS units 와 REM을 사용해야하는이유. (0) | 2021.08.02 |
[CSS] CSS cascoding 및 HTML과 CSS관련 고려사항들 (0) | 2021.08.02 |
[CSS] BOX MODEL (0) | 2021.08.02 |