在页面的头部我有
<style type="text/css">
html {
overflow: hidden
}
html, body, #centralDIvision {
margin-left: auto;
margin-right: auto;
width: 1100px;
height: 400px;
}
#centralDivision {
float: left;
}
#outer {
display: table;
position: absolute;
height: 100%;
width: 100%
}
</style>
但不是让 centralDivision div 的高度等于 400px,我希望它是浏览器当前屏幕尺寸的 75%。我有办法做到这一点吗?