I\'m implementing pagination, and it needs to be centered. The problem is that the links need to be displayed as block, so they need to be floated. But then, text-alig
text-alig
I think the best way is using margin instead of display.
margin
display
I.e.:
.pagination a { margin-left: auto; margin-right: auto; width: 30px; height: 30px; background: url(/images/structure/pagination-button.png); }
Check the result and the code:
http://cssdeck.com/labs/d9d6ydif