作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的页脚 div 与 chrome 浏览器中的内容重叠,尽管我已经清除了它。有人可以用 css 给我指出正确的方向吗?我应该使用 if is chrome javascript 吗?
http://archibaldbutler.com/projects/roaming-giraffe/html/
谢谢
最佳答案
如果页脚一直设计在页面底部,那么这样做:
.footer-bg {
clear: both;
bottom: 0px;
position: fixed;
width: 996px;
height: 192px;
background-image: url('../html/images/footer-bg.jpg');
background-position: center top;
background-repeat: no-repeat;
}
.content-bg2 {
clear: both;
float: left;
margin-top: 10px;
margin-bottom:192px;
width: 996px;
height: 369px;
background-image: url('../html/images/maincontent2bg.jpg');
background-position: center top;
background-repeat: none;
}
如果它应该位于该内容区域的底部,则执行此操作:
.footer-bg {
clear: both;
bottom: 0px;
width: 996px;
height: 192px;
background-image: url('../html/images/footer-bg.jpg');
background-position: center top;
background-repeat: no-repeat;
}
关于css - chrome 页脚重叠内容尽管清晰 :both used,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15747577/
我是一名优秀的程序员,十分优秀!