2011-07-19 51 views
0

像許多網站一樣,我希望在每個頁面的底部添加法律聲明。我知道如何鏈接,但不知道如何嵌入以下版權沒有巨大的差距:添加法律聲明鏈接到底部的模板

首頁|聯繫|免責聲明|隱私政策|條款&條件

有人能請指教嗎?我想用CSS代替BR代碼。謝謝。

CSS:

#footer { 
    margin: 0px auto; 
    padding-bottom: 60px; 
    width: 850px; 
    position: relative; 
    text-align: center; 
} 

#footer .social { 
    position: absolute; 
    top: 0; 
    left: 10px; 
} 

#footer .social ul { 
    list-style: none; 
    margin: 10px 0px 0px; 
    padding: 0px; 
} 

#footer .social li { 
    float: left; 
    margin-right: 5px; 
} 

#footer .social img { 
    border: 0px; 
} 

#footer .copyright { 
    color: #fff; 
    line-height: 32px; 
    margin-top: 10px; 
} 

HTML:

<div class="copyright"> 
    Copyright &copy; 2011 Ricky Wai Kit Tsang. All rights reserved. 
</div> 

回答

1

如果你不想要一個巨大的缺口,可以消除或減少了marginline-height.copyright DIV

.copyright { 
    color: #fff; 
    line-height: 32px; //reduce or remove 
    margin-top: 10px; //reduce or remove 
} 
+0

HTML部分如何? – DearRicky

+0

只需將鏈接列表放在'div'或'p'中即可。 –