我有我的網站的頁面頁腳持有的鏈接列表之間的空間,最後兩個環節是社會圖標 重寫最後兩個元素
,我有這個CSS代碼
#FooterLinks{
width:960px;
margin:0 auto;
text-align:center;
padding-top:10px;
font-weight:bold;
}
#FooterLinks li{
display:inline;
color:White;
}
#FooterLinks li:last-child{
border:none;
}
#FooterLinks li a {
color:White;
padding: 0 10px;
}
#FooterLinks li a img{
border:none;
}
a:link{text-decoration:none;}
#FooterLinks li a:hover{
color:Red;
}
這是我頁腳的源代碼:
<div id="FooterLinks">
<ul>
<li id="fbAbout"><a href="aboutus.aspx">About Us</a></li>
<li id="fbcareers"><a href="careers.aspx">Careers</a></li>
<li id="fbprivacy"><a href="privacy.aspx">Privacy</a></li>
<li id="fbterms"><a href="terms.aspx">Terms</a></li>
<li id="fbpress"><a href="press.aspx">Press</a></li>
<li id="fbcontactus"><a href="contactus.aspx">Contact Us</a></li>
<li id="fbfaq"><a href="faq.aspx">FAQ</a></li>
<li id="fbgethelp"><a href="gethelp.aspx">Get Help</a></li>
<li id="twitter"><a href="https://twitter.com/YOUR_USER_NAME"><img src="Imaes/Main/SocialIcons/twitter.png" width="32" height="32" alt="Twitter" /></a></li>
<li id="facebook"><a href="http://www.facebook.com/298542786850699"><img src="Images/Main/SocialIcons/facebook.png" width="32" height="32" alt="Facebook" /></a></li>
</ul>
<p>© PlaySight Interactive Ltd. All Right Reserved</p>
</div>
我應該添加到CSS來解決我的問題?
編輯:我添加了頁腳的源代碼。
我們展示頁腳的一些HTML代碼.. –