position为absolute时max-height不生效, 内容不能自适应调整高度?

前提:需要兼容ie8+
借助position:absolute使div垂直居中,但是发现设置max-height:500px;根据内容不能自适应调整高度,该怎么解决呢?
html:
.dialog_box_wrap{
width:100%;
height:100%;
position:fixed;
top:0;
left:0;
z-index:1000;
background:#000;
opacity:0.8;
}
.dialog_box{
max-height:500px;
width:800px;
background:#fff;
position:absolute;
overflow-y:auto;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
}
繁花不似锦
浏览 2583回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript