Via CSS I disabled the pointer-events. However, on mobile I want to activate it.
My attempt:
.videoContainer { pointer-events: none; }
@media only screen and (max-width: 600px) { .videoContainer { pointer-events: all; } }
Unfortunately it does not work for me.
2.1m questions
2.1m answers
60 comments
57.0k users