I have got this css:
#footerLinks {
text-align: center;
margin: auto;
}
#footerLinks a {
float: left;
color: #c2c2c2;
display: block;
font-size: 12px;
margin-right: 10px;
}
And this html:
<div id="footerLinks">
<a href="">No Porn on App Store</a>
<a href="">Porn and Apple</a>
<a href="">iPhone Porn Wiki</a>
</div>
The problem is that the hyperlinks wont be in the center of the page. I tried margin: auto, text-align and tried to play with the margins nothing works, why?
remove
float:left;anddisplay:block;from this classDemo