0
我有這樣的HTML一個div內粘頁腳:中心與利潤率左
<div class="page">
<div class="content">
<p>Lorem ipsum dolor sit amet...</p>
<p>Etiam condimentum lorem faucibus feugiat egestas...</p>
</div>
<div class="footer">
<p class="text-center">Sticky footer with centered text?</p>
</div>
</div>
而這個CSS:
body {
background: #222;
margin: 0;
padding: 0;
}
p {
margin: 0 0 20px;
}
.page {
margin-left: 200px;
background: #fff;
min-height: 1200px;
padding: 20px 20px 0;
}
.footer {
position: fixed;
bottom: 0;
background: #eee;
width: 100%;
padding: 20px 20px 0;
margin: 0 -20px;
}
.text-center {
text-align: center;
}
這裏的的jsfiddle(優於千字):
如何將粘性頁腳居中放置到白色頁面(.page),給定有問題的餘裕 - 這是導致不對齊?
在此先感謝!
......如果只是這麼簡單:-)我需要這個左邊距,因爲會有一個粘性邊欄 – Ivan
放置一個編輯,它現在應該可以工作。 – Peacy