IE7 Z-Index Layering Issues

后端 未结 11 771
执念已碎
执念已碎 2020-11-22 11:31

I\'ve isolated a little test case of IE7\'s z-index bug, but don\'t know how to fix it. I have been playing with z-index all day long.

Wha

11条回答
  •  不思量自难忘°
    2020-11-22 11:58

    http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/

    $(function() {
    var zIndexNumber = 1000;
    $('div').each(function() {
        $(this).css('zIndex', zIndexNumber);
        zIndexNumber -= 10;
    });
    });
    

提交回复
热议问题