2010-12-22 36 views

回答

0

我以前有過這個問題。修復它使用這個jQuery的片段。下面的代碼片段修復了我的問題this site

<!--[if lte IE 7]> 
$(document).ready(function() { 
    // lower the z-index to negative to fix the overlapping drop-down menu problem 
    // for IE browsers only 
    // the check for support of leading white space should give us false for IE 6-8 
    if(!jQuery.support.leadingWhitespace){ 
    $('.post-header').css('z-index', -2); 
    $('.container').css('z-index', -2); 
    } 
}); 
</script> 
<![endif]-->