Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

alt text

Thanks for your help, Mike.

share|improve this question
The whole purpose of the float property is to position an element along the left or right side of its container. – Rob Jan 22 '11 at 13:29
@Rob: Well, I needed to define width and height for the link elements, which can be only done on block elements, but when you make the links block, they spread on new line each, that's why I made them floated. – Mike Jan 22 '11 at 13:35
Alternative solution, when you don't want to / can't use inline-block. stackoverflow.com/questions/1232096/… – hakunin Apr 19 at 13:32

1 Answer

up vote 59 down vote accepted

Removing floats, and using inline-block may fix your problems:

 .pagination a {
-    display: block;
+    display: inline-block;
     width: 30px;
     height: 30px;
-    float: left;
     margin-left: 3px;
     background: url(/images/structure/pagination-button.png);
 }

(remove the lines starting with - and add the lines starting with +.)

inline-block works cross-browser, even on IE6 as long as the element is originally an inline element.

Quote from quirksmode:

An inline block is placed inline (ie. on the same line as adjacent content), but it behaves as a block.

this often can effectively replace floats:

The real use of this value is when you want to give an inline element a width. In some circumstances some browsers don't allow a width on a real inline element, but if you switch to display: inline-block you are allowed to set a width.” ( http://www.quirksmode.org/css/display.html#inlineblock ).

From the W3C spec:

[inline-block] causes an element to generate an inline-level block container. The inside of an inline-block is formatted as a block box, and the element itself is formatted as an atomic inline-level box.

share|improve this answer
This doesn't work for me :-/ – Mike Jan 22 '11 at 13:18
1  
Ok, now it works fine, even in IE, thanks ;-) – Mike Jan 22 '11 at 13:21
1  
Yes, it does center it. – Mike Jan 22 '11 at 13:33
2  
Tip: Don't forget about vertical-align. – Synexis Dec 6 '12 at 13:29
1  
Yes, this is one of the few cases I've found where vertical-align actually does what you expect it to. – Mike Turley Jan 10 at 21:41
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.