所以,我得到了以前的幫助,但是我的東西沒有組織,所以我很難理解某人在做什麼。它讓我離開這裏,我有我的垂直路線,但現在因爲某種原因,我的頁腳中途切斷了,我的社交圖標保持在我的動力旁邊,即使他們想要對齊/漂移到右側。垂直對齊頁腳內容
HTML
<div id="footer">
<div id="footerContent">
<div id="leftFooter">
$POWERED_BY$
</div>
<div id="rightFooter">
<a href="#"><img src="http://zevoxa.com/images/social/facebook.png" /></a>
<a href="#"><img src="http://zevoxa.com/images/social/twitter.png" /></a>
<a href="#"><img src="http://zevoxa.com/images/social/youtube.png" /></a>
<a href="#"><img src="http://zevoxa.com/images/social/deviantart.png" /></a>
</div>
</div>
</div>
CSS
#footer {
background-image:url('/images/footer_bg.png');
bottom repeat-x;
height: 110px;
display:table-cell;
vertical-align: middle;
}
#footerContent {
display:table;
width:100%;
}
#leftFooter {
float: left;
font-family:maven;
font-size: 15px;
padding-left: 20px;
}
#rightFooter {
float: right;
text-align:right;
}
如果我沒必要#footerContent,然後在那裏我可能會放寬度:繼承;高度:繼承;? – Zevoxa
對不起,我的意思是你可能只需要#footerContent或#footer。你可以在一個div上設置寬度,高度,顯示,背景屬性,但正如我所說,這是可選的,取決於你想要做什麼。無論哪種方式都很好。我用第二個例子更新了小提琴,以便說清楚。 –