3
I have 2 Divs.
The first 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 among the contents, there is a blank part with 500px height.
When passing through this blank part, the contents of the first div is revealed, but I have a button and I cannot click this button.
In the CSS of the second div 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?
here is an example: http://jsfiddle.net/5LfhffrL/ scrolls down, a red div will appear, tries to click on "button 1" or "button 2", you will notice what I am saying.
– Filipe Moraes
I edited the comment, I think it’s now as expected.
– Boni