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]-->
网友评论