可在http://tattech.ru/uslugi/novaya-stranitsa.php
访问该页面联系表单和横幅包含在cf-banner
类中。它相对定位。问题是它没有推倒我的页脚。
定位页脚绝对不是一个选项,因为它对长内容不起作用。可能是什么问题?感谢。
答案 0 :(得分:1)
这是因为您的.cf-banner
正在浮动。
通过在clear: both
元素上声明footer
来清除浮动。
<强> CSS 强>
footer {
position: relative;
bottom: 0;
left: 0;
width: 100%;
clear: both;
}