I use the drop-down menu in my header for notification, but with the drop-down list all the divs that are visible open, then I gave the z-index to all divs, but the links to these divs can no longer be viewed!
CSS dropdown div
.drop-down{
overflow:scroll;
overflow-x:hidden;
}
and the div behind it is
#main-div{
z-index:-1;
position:absolute;
}
source
share