我正在尝试做一个标准的粘性页脚,但身高未知。如何避免页面内容落后于它?
CSS
#nav {
padding: 20px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
HTML
<p>Some contents (...)</p>
<div id="nav">Navigation</div>
的jsfiddle
(我知道有多个粘性页脚解决方案,但似乎都过时了/ /并且不兼容跨浏览器,css3怎么样?)