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 © 2011 Ricky Wai Kit Tsang. All rights reserved.
</div>
HTML部分如何? – DearRicky
只需將鏈接列表放在'div'或'p'中即可。 –