现在的位置: 首页 > 综合 > 正文

[原]CSS中全屏高度自适应

2018年08月30日 ⁄ 综合 ⁄ 共 197字 ⁄ 字号 评论关闭
body {
position:absolute;
background-color:#000;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
#container {
height:100%;
position:absolute;
}
#leftDiv {
height:100%;
width:300px;
position:absolute;
background:#FFFFFF;
}

抱歉!评论已关闭.