div高度设置!!!
发布网友
发布时间:2022-05-12 15:04
我来回答
共3个回答
热心网友
时间:2023-10-11 06:26
让footer浮动在main上面,并且它的宽度还和body一样就行啊
可以分为三层来看,其中main和footer的层级都高于body,而footer又高于main,就是说main覆盖body的左边部分,footer覆盖main的底部一部分
热心网友
时间:2023-10-11 06:26
你可以设置footer的css为固定的,这样它就永远在底部了
.footer{
position: fixed;
width:这里写你的宽度
height:这里写你的高度
bottom:0;
}
热心网友
时间:2023-10-11 06:27
用绝对定位的办法,代码大致如下
<style>
.main{position:relativer}
.main .footer{position:absolute;bottom:0}
</style>
<div class="main">
<div class="footer"></div>
</div>
其他样式属性楼主根据自己需要填即可追问footer在main里,求大神!!!
追答是在main里啊,你难看不懂代码吗?