This page is aligned in the horizontal center in every browser except IE. Right now is using margin:0 auto; and width: 960px;
|
|
||||
|
|
closed as not a real question by casperOne♦ Sep 5 '12 at 11:52
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Give the page a doctype as the very first line: At moment, IE is using Quirks mode to render the page. Unfortunately, this slightly screws up the page, because you've coded it to look correct in the Quirks mode of various (non IE) browsers. You'll simply have to fix the problems that come from adding the doctype. You should always use a doctype when starting out designing a page to help ensure a consistent layout between different browsers. |
|||||||||||
|
|
Thirtydot is right, using the correct doctype will fix the issue I used the following doctype to fix the issue in one of my web page Ex:
|
|||
|
|
|
The engine that renders Css is not alike in every browser, but I there's a trick to work around this kind of situation: You can write specific line of css for one specific browser like this (other browser will omit it):
The above line is only for Internet Explorer(added "\9" after the rule). Please put this rule after the rule for other browser. You can find more about these trick by googling "CSS hack for browser" |
|||
|
|