0
4

3 回答 3

0
position:absolute;
bottom:0;
top:0;

如果您的元素不是身体,请使用

position:relative

在父级上,以及特定的宽度和高度。

于 2013-08-05T22:45:49.237 回答
0

试试这个:http: //jsfiddle.net/bBhUX/

添加

position: fixed;
overflow: hidden;

进入父容器

于 2013-08-05T22:47:50.793 回答
0

利用

position:absolute; //or fixed if you want it to remain at constant position even when scrolled
bottom: 0;
于 2013-08-06T17:33:43.793 回答