0

这是我的小提琴

如果我删除下面的 css,一切都很好。没有它,页脚会占据整个页面,屏蔽所有内容。

.image {
    position:relative;
    float: left;
}
.image .text {
    position:absolute;
    top:110px;
    left:55px;
    width: 200px;
    color: white;
    font-size: 14px;
}

问题是没有该代码我无法让我的覆盖文本显示在我的图像上。我究竟做错了什么?谢谢。

4

2 回答 2

0

添加clear:both#footer;

#footer {
    margin: 0px auto;
    padding-bottom: 60px;
    width: 850px;
    background: #444;
    position: relative;
    text-align: center;
    clear:both;
}
于 2013-09-30T16:14:00.013 回答
0

尝试clear: both页脚。

#footer {
    margin: 0px auto;
    padding-bottom: 60px;
    width: 850px;
    background: #444;
    position: relative;
    text-align: center;
    clear: both;
}
于 2013-09-30T16:19:52.273 回答