div 自动高度
问题: 一个页面分上下二部分,上部分高度是固定不变的,要求下部分高度自动占满屏幕,如何实现?
第一感觉是准备用 JS 实现。
今天发现一个用 CSS 实现的方法
position: fixed;
bottom: 10px;
overflow: auto;
left: 0px;
top: 44px;
position 说明:
posted on 2014-08-05 15:54 thegavincheng 阅读(180) 评论(0) 编辑 收藏 举报
问题: 一个页面分上下二部分,上部分高度是固定不变的,要求下部分高度自动占满屏幕,如何实现?
第一感觉是准备用 JS 实现。
今天发现一个用 CSS 实现的方法
position: fixed;
bottom: 10px;
overflow: auto;
left: 0px;
top: 44px;
position 说明:
posted on 2014-08-05 15:54 thegavincheng 阅读(180) 评论(0) 编辑 收藏 举报