在我的网站上运行粘性页脚是CSS代码
html, body {height:100%; }
#wrap {min-height: 100%;}
#main {overflow:auto; padding-bottom: 180px; } /* must be same height as the footer */
#footer {position: relative;
margin-top: -180px; /* negative value of footer height */
min-height: 180px;
clear:both;}
但是身体(我有一个bgcolour)和页脚之间有一个白色的间隙......尝试了一切,任何人都有类似的问题吗?
答案 0 :(得分:0)
您可以使用此css代码将页脚粘贴在底部
footer {
position: fixed;
bottom:0;
min-height: 180px;
}
所以它总是坚持到底。 p>