标签:style blog http color os io art 问题
问题: 一个页面分上下二部分,上部分高度是固定不变的,要求下部分高度自动占满屏幕,如何实现?
第一感觉是准备用 JS 实现。
今天发现一个用 CSS 实现的方法
position: fixed;
bottom: 10px;
overflow: auto;
left: 0px;
top: 44px;
position 说明:
http://www.w3school.com.cn/cssref/pr_class_position.asp
http://developer.51cto.com/art/201009/226526.htm
标签:style blog http color os io art 问题
原文地址:http://www.cnblogs.com/cg6811568/p/3892469.html