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
Add this to you styling
position:relative; float: left; left: calc(50% - *half your container length here);
*If your container width is 50px put 25px, if it is 10em put 5em.