I have some centered content within a div. It shows up fine in Firefox/Chrome. In IE6 the content expands beyond the div to the entire browser window. Any idea what could be causing this?
|
|
|||||
|
|
|
IE6 WorkaroundThe thing to do is to have text-align: center on a parent div e.g. body, so that your content div is centered in IE6. Then use margin: auto on the content block to make sure the div is centered in better browsers. CSS
|
||
|
|
|
|
I have defined the doctype and I am centering the content with CSS. |
||||
|
|
|
The <center> tag is deprecated. You should do something like this:
That way you will have centered content. |
||
|
|
|
|
Make sure you have the doctype definition at the top of your page. Otherwise, IE6 will open the page in quirks mode which can screw all kinds of stuff up...
|
||
|
|
