vote up 0 vote down star

How to centralize vertically of a div??

In FF, chrome, opera, safari, I use this:

top: 50%;

And centralize, but IE stuck at top. Why? how to centralize vertically in IE?

flag

Answer to why is: IE has problems with % when parent levels have no fixed size set to it. If you can set a fixed height on the parent element, then top:50% will also work in IE. – awe Sep 11 at 10:42

3 Answers

vote up 0 vote down

A nice one here

Vertical Centering in CSS - Example

link|flag
That one requires that height of the containing tag is set to a fixed value. IE has a problem when the container has not fixed value. – awe Sep 11 at 10:21
vote up 4 vote down

Read this article and hopefully get enlightened.

Vertical Centering With CSS

It explains 5 methods to achieve vertical alignment.

link|flag
Method 3 looked like a good simple and cross browser solution. – awe Sep 11 at 10:25
vote up 0 vote down

Best link I've found on centering content is here.

I've used it in a couple of sites and it works on all browsers.

link|flag
The downside here is that they use some browser specific hacks to get it working in all browsers, which makes it difficult to understand and maintain as a developer/web-designer. – awe Sep 11 at 10:27

Your Answer

Get an OpenID
or

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