0

如果页面的内容足够长以将其推到底部,我需要在页面底部放置一个带背景的 div

目前我使用此代码

#bottomBar {
    position: absolute;
    bottom: 0;
}​

这样做的问题是,如果页面的内容大于视图端口中可用的内容,则 img 会卡在漂浮在虚无之中

该脚本何时无法 运行的示例 该脚本何时运行良好的示例

4

2 回答 2

0

尝试这个:

#bottomBar {
    position: fixed;
    bottom: 0;
}​
于 2012-11-28T13:27:59.323 回答
-1

如果您的图像加载失败,您将看不到 div。

指定宽度和高度以及背景以查看 div

width: 100px;
height: 100px;
bottom: 0px;
position: absolute;

看小提琴

它工作正常

于 2012-11-28T13:31:40.260 回答