这是我的Fiddle
如果我删除下面的CSS,一切都很好。如果没有它,页脚将占据整个页面,阻止所有内容。
.image {
position:relative;
float: left;
}
.image .text {
position:absolute;
top:110px;
left:55px;
width: 200px;
color: white;
font-size: 14px;
}
问题是没有该代码我无法在我的图像上显示我的叠加文字。我究竟做错了什么?感谢。
答案 0 :(得分:0)
将clear:both
添加到#footer
;
#footer {
margin: 0px auto;
padding-bottom: 60px;
width: 850px;
background: #444;
position: relative;
text-align: center;
clear:both;
}
答案 1 :(得分:0)
尝试clear: both
页脚。
#footer {
margin: 0px auto;
padding-bottom: 60px;
width: 850px;
background: #444;
position: relative;
text-align: center;
clear: both;
}