相对定位的div不会推倒页脚

时间:2016-06-21 08:06:27

标签: css

可在http://tattech.ru/uslugi/novaya-stranitsa.php

访问该页面

联系表单和横幅包含在cf-banner类中。它相对定位。问题是它没有推倒我的页脚。

定位页脚绝对不是一个选项,因为它对长内容不起作用。可能是什么问题?感谢。

1 个答案:

答案 0 :(得分:1)

这是因为您的.cf-banner正在浮动。 通过在clear: both元素上声明footer来清除浮动。

<强> CSS

footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    clear: both;
}