IE 5 und right:10px
-
Hi,
habe folgenden HTML Code, der im Mozilla auch super funktioniert. Nur der IE (5) kapiert irgendwie das right:8px; nicht. Kennt jemand einen Workaround? body absolut zu positionieren und auf den ganzen Anwendungsbereich auszudehnen habe ich schon versucht, macht er auch nicht...
<?xml version='1.0' encoding='iso-8859-1'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style rel="stylesheet" type="text/css"> #inhalt { position:absolute; left:100px; right:8px; top:8px; border-style:solid; border-width:1px; border-color:rgb(0,0,0); } </style> <title>Titel</title> </head> <body> <div id="inhalt"> bla </div> </body> </html>
Danke...
-
du könntest versuchen, ein weiteres DIV entsprechend außenrum zu basteln, oder so:
#inhalt { margin-left:100px; margin-right:8px; width:100% top:8px; border-style:solid; border-width:1px; border-color:rgb(0,0,0); }
-
Jo, gute Idee.
Danke