解决神奇的页脚问题
如果您快速浏览一下我正在设计的这个网站: http://milabalami.com
页脚中看到的黑线是我想要修复的一个。无论如何,我可以将该页脚放在页面内容(包装器)的底部吗?自从表格的黄金时代以来,我就没有做过任何网页设计,所以 CSS 对我来说还很陌生。
有谁可以帮助这位老人吗?请在回复中具体说明,因为我是 CSS 样式新手......
If you have a quick look at this website that I am designing: http://milabalami.com
The blackline seen in the footer is the one that I want to fix. Is there anyway that I can put that footer at the bottom of the content (wrapper) of the page? I have not done any webdesigning since the golden days of tables so CSS is quite new to me.
Anyone that could assist this old man? Please be specific in any reply as I am new to CSS styling...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的意思是你想消除包装纸和黑线之间的间隙?如果是,只需将
#blackbox2
边距更改为margin: 0 auto 15px;
you mean that you want to eliminate the gap between wrapper and the black line? If yes just change the
#blackbox2
margin tomargin: 0 auto 15px;
您有:
尝试删除
margin-top: 11%
。这与“父高度的 11%”匹配,这就是为什么您的 blackbox2 距离其上方的包装器如此远的原因。You have:
Try removing
margin-top: 11%
. This matches to '11% of the parent height', which is why your blackbox2 is so far from the wrapper above it.这是否可以解决您的问题 - http://www.cssstickyfooter.com/ ?
Does this solve your problem — http://www.cssstickyfooter.com/ ?