我的网站页面中有一个包含链接列表的页脚,最后两个链接是社交图标
我有这个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 中添加什么来解决我的问题?
编辑:我添加了页脚的源代码。