解决神奇的页脚问题

时间:2011-01-17 16:46:05

标签: css stylesheet position footer

如果您快速浏览一下我正在设计的网站:http://milabalami.com

页脚中看到的黑线是我要修复的黑线。反正我是否可以将页脚放在页面内容(包装器)的底部?自从桌子的黄金岁月以来,我没有做过任何网页设计,所以CSS对我来说是个新鲜事。

任何可以帮助这位老人的人?由于我是CSS造型的新手,请在任何回复中具体说明......

3 个答案:

答案 0 :(得分:1)

你的意思是你想消除包装纸和黑线之间的差距?如果是,只需将#blackbox2保证金更改为margin: 0 auto 15px;

答案 1 :(得分:1)

你有:

#blackbox2 {
background-color: black;
bottom: 0%;
height: 33px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
margin-top: 11%;
position: relative;
top: auto;
width: 900px;
z-index: 12;
}

尝试删除margin-top: 11%。这匹配'父高度的'11%',这就是为什么你的blackbox2离它上面的包装器太远了。

答案 2 :(得分:0)

这是否解决了您的问题 - http://www.cssstickyfooter.com/

相关问题