美文网首页
IE8 overflow-y:auto 无效的解决办法

IE8 overflow-y:auto 无效的解决办法

作者: 走码人 | 来源:发表于2019-11-25 20:21 被阅读0次

IE8下overflow-y不能单独设置,导致div的滚动条无法显示

解决方案,针对IE9以下版本单独设置div的css,指定position:relative;

<!--[if lt IE 9]>
<style>
    .div_content {
        overflow-x:auto;
        overflow-y:auto;
        -ms-overflow-y: auto;
        height: 100%;
        width: 900px;
        position:relative;
    }
</style>
<![endif]-->

相关文章

网友评论

      本文标题:IE8 overflow-y:auto 无效的解决办法

      本文链接:https://www.haomeiwen.com/subject/mezjwctx.html