欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS DIV嵌套于各层底部_html/css_WEB-ITnose

程序员文章站 2022-04-19 14:38:30
...
网上找了很多例子,不不可行,之后在csdn帖子中找到了,记录一下。

一定要在三层div中设置

style="position:relative;"

效果图:

CSS:

div{border:1px solid black;}#content{height:100%;}#left{width:20%;height:100%;float:left;position:relative;}#right{width:78%;height:100%;float:right;position:relative;}#bottom{width:100%;position:absolute;bottom:0;}

HTML:

图片
底部