Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We just released an alpha version of a new web app, and for some reason the login box is never centered correctly in Internet Explorer. (Firefox/Chrome work).

Example: http://demo.ionfish.org/status2/core/admin/

CSS:

http://demo.ionfish.org/status2/css-fail.txt

I have a feeling that something is overriding the CSS for centering somewhere but can't figure it out.

share|improve this question

migrated from webmasters.stackexchange.com May 1 '12 at 11:34

1 Answer

up vote 2 down vote accepted

Where–and what–is your doctype? The page is being rendered in quirks mode because you didn't specify anything.

In a recent version of IE, load your page and hit F12 to open the developer tools. Along the top of the window/panel, you'll see "Browser Mode: [something] Document Mode: [something]" Click the Document Mode section, and select any of the "standards" options to change the rendering behavior, and you should see your expected results. To actually make the browser do that on its own, though, you need to include a proper doctype.

share|improve this answer
Ah, many thanks. – ionFish May 1 '12 at 10:25

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.