>>>> <http://www.browsercam.com/public.aspx?proj_id=288992>

>>> I saw this captures. It seems that he ignores the body tag ? I 
>>> think I need a PC with IE 5.5

>> <http://box.ad-rh.com/adrh/>

You only need to run IE6 in Quirks mode to get the same result as in
IE5.0/5.5 on this point - lack of centering and incorrect width in right
column.

To do so: add the xml declaration...
<?xml version="1.0" encoding="utf-8"?>
...above the doctype declaration. Will only affect IE6, and you can take
the xml declaration out after testing and correcting older IE-versions.

The basic fixes are...

body {
text-align: center /* centering page in quirks mode */;
}
body #cont {
text-align: left /* correcting text-alignment down the page */;
position: relative /* for positioning '#langues' correctly */;
}

These fixes have no negative effect on IE6 (or any other browser) in
standard mode.
Width-corrections will affect other browsers, so you'll have to hack
them in for old IE-win - which is why I didn't bother to add those.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to