I have four DIVs that split the screen evenly into 4 parts. There is another full-screen DIV for canvas.
I want to make it possible that those DIVs don't obstruct each other – that is, if the user clicks on a link in the smaller (one of the 4) DIV, they get this link, if the user clicks on the canvas element in the big DIV, that element responds.
Here's the code... Thank you!
#graph-container {
top: 50px;
bottom: 50px;
left: 50px;
right: 50px;
position: fixed;
z-index: 9;
padding-left: 0px;
padding-right: 0px;
-webkit-animation: blink 2s linear 0s;
}
#NW { z-index: 10; position:fixed; width:50%; height:50%; top:0; left:0; }
#NE { z-index: 10; position:fixed; width:50%; height:50%; top:0; left:50%; }
#SW { z-index: 10; position:fixed; width:50%; height:50%; top:50%; left:0; }
#SE { z-index: 10; position:fixed; width:50%; height:50%; top:50%; left:50%; }