爲什麼我不能點擊我的圖形?CSS Set Graphics Not Clickable
HTML:
<div class="column-right-social">
<ul>
<li id="facebook"><a href="#"></a></li>
<li id="twitter"><a href="http://www.twitter.com/"></a></li>
<li id="mail"><a href="/contact-us"></a></li>
</ul>
</div>
CSS:
.column-right-social ul{
width:250px;
margin:0px;
padding:0px;
}
.column-right-social ul li{
width:80px;
height:80px;
list-style-type:none;
float:left;
}
.column-right-social #facebook{
background:url('../image/facebook.png') no-repeat;
}
.column-right-social #twitter{
background:url('../image/twitter.png') no-repeat;
}
.column-right-social #mail{
background:url('../image/mail.png') no-repeat;
}