Ryan Fait的CSS粘性页脚不起作用

时间:2016-07-26 08:38:19

标签: html css

* {margin: 0;}

html, body {height: 100%;}

.wrapper {
     min-height: 100%;
     height: auto !important;
     height: 100%;
     margin: 0 auto -4em;
}

.footer, .push {height: 4em; }

.footer {background-color: red;}
}
    
    <body>
    <div class="wrapper">
       <p>Your website content here.</p>
        <div class="push"></div>
    </div>
    <div class="footer">
        <p>Copyright (c) 2008</p>
    </div>
</body>

我的网站上有类似的结构和代码:http://test.tattech.ru/company/但它在那里不起作用。

我没看到什么?

编辑:所以我有另一个div包裹wrapper并添加height:100%,正如karlisup指出的那样解决了问题

0 个答案:

没有答案