Links under the IE8 mask layer can be clicked

makes a mask layer with the following code

.mask{
position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=-sharpBB000000, endColorstr=-sharpBB000000);
    background: rgba(0,0,0,0.7);
    z-index: 99999;
}

under IE8, the connection under the mask layer can be clicked. Modifying z-index will not solve the problem. I want to know why this problem occurs and how to solve it

.
Mar.28,2021

ie8 in some cases, the div of the mask layer will be penetrated. In general, you can replace the div with an iframe.

Menu