我的页脚重叠了我的表单步骤

时间:2016-03-15 12:45:23

标签: css twitter-bootstrap

我是css和bootstrap的新手,

我的项目需要帮助,我的页脚重叠了我的容器表单步骤 这是我的网站a link

2 个答案:

答案 0 :(得分:0)

你有很多与css相关的问题,因为插件使用不当。好的解决你的页脚问题,这可以帮助你

section{ 
         height: 100%;
         overflow: hidden;
} 

现在不是,但是将来添加更多html和css时,由于插件和css使用不当,您可以获取各种问题。所以要小心那个

答案 1 :(得分:0)

在样式表中尝试:

section{
    float: left;
    width: 100%;
    position: relative;
    padding: 20px 0;
    background: #fff;
    height: 135%;
    overflow: hidden;
}