I have 2 divs.
The first one has z-index 1 and position fixed.
The second div has z-index 2 and position relative.
The second div has a very extensive content and between the contents, there is a blank part with 500px height. When I go through this blank part, the contents of the first div are revealed, but I have a button and I can not click this button.
In the second div's CSS I put the following code, but the buttons of the second div stopped working.
pointer-events: none
How do I invalidate the white space of the second div so that it is possible to click the button that is first div?