I'm making a pagination for my page and it needs to be centered. The problem is, that the links need to be displayed as block and so floated. But then, the text-align: center; does't work on them. I could achiave it by giving the wrapper div padding of left, but every page will have different number of pages, so that would't work. Here's my code.
<div class='pagination'>
<a class='first' href='#'>First</a>
<a href='#'>1</a>
<a href='#'>2</a>
<a href='#'>3</a>
<a class='last' href='#'>Last</a>
</div> <!-- end: .pagination -->
And the CSS:
.pagination {
text-align: center;
}
.pagination a {
display: block;
width: 30px;
height: 30px;
float: left;
margin-left: 3px;
background: url(/images/structure/pagination-button.png);
}
.pagination a.last {
width: 90px;
background: url(/images/structure/pagination-button-last.png);
}
.pagination a.first {
width: 60px;
background: url(/images/structure/pagination-button-first.png);
}
To get the idea, what I want:

Thanks for your help, Mike.