如何让div大小随窗口大小变化

2024-11-09 03:23:48
推荐回答(5个)
回答1:

大致讲一下思路。

1、设定一个最外层容器div-box,实现【顶部触顶底部触底,div与页面高度间固定差值】,在css文件中的.div-box下可修改margin数值)

2、前三个div可公用一个样式 div1

3、第五个div绝对定位在底部 div5,需要将div-box的position设为relative,否则会基于body定位。

4、第四个div设置高度为100% (如果样式需要设置高度撑满整个页面,那么最外层高度设置必须设置为100%),绝对定位到div-box中。

以下是代码。

html页面代码




div大小随窗口大小变化





div1固定高度

div2固定高度

div3固定高度

div4动态高度

div5固定高度



css样式

html,body{
    height:100%;
    margin: 0;
    font-size: 24px;
    color: #fff;
    font-family: '微软雅黑';
    line-height: 50px;
    text-align: center;
}

.div-box{
    position: relative;
    width: 320px;
    height: 100%;
    margin: 20px 0; margin-left: 120px;
    background: #87CEFA;
    border: #ccc solid 5px;
}
.div1{
    border: #fff solid 1px;
    height: 50px;
}
.div4{
    position: absolute;
    width: 100%;
    border: #fff solid 1px;
    height: 100%;
}
.div5{
    position: absolute;
    border: #fff solid 1px;
    width: 100%;
    height: 50px;
    bottom: 0;
}

回答2:

给body加一个height:100%;给html加一个height:100%,然后需要根据页面高度变化的div的高度也写成百分比,试试看,但要精确实现你说的比窗口小10px好像不太好实现

回答3:

整个盒子这样写:
position: absolute;
left: 0;
top: 0;
width: 240px;
height: 100%;
background: red;

上下的距离可以用空DIV写

回答4:

给div的css加上position:absolute;这个属性。

回答5:

这样动态的变化除了百分比就剩下js能实现啊

相关问答
最新问答