Hallo Martin!
DAS ist es ja gerade! Ich möchte gerne, daß siech die Größe der Zelle rechts vom Emblem dynamisch der Browserfenstergröße anpaßt. Und zwar samt der darin enthaltenen "Ruler"-Grafik. (<hr style="color:rgb(...)>) akzepiert auch nur der MSIEP).
Eine Lösung mit einem Nachteil (unter NS ging es nicht beim "position:absolute")
<html>
<head>
<title>Test 1</title>
<script language="JavaScript">
<!--
function bild(){
var x, y;
if (document.layers){
x = self.innerWidth;
}
else {
x = document.body.clientWidth;
}
breite = x-368;
document.write("<img src="../Grafik/RuleTopRot.gif" height="26" width=""+breite+"">");
}
//-->
</script>
</head>
<body>
<div id="Layer1" style="width:100%; height:64px;">
<table width=100% border="0" cellpadding="0" cellspacing="0" name="Titelzeile">
<tr>
<td valign="top" width="200"><img src="../Grafik/RuleTopRot.gif" height="26" width="200" alt=""></td>
<td width="68"><img src="../Grafik/RotWap1.gif" width="40" height="60" alt="Emblem"></td>
<td valign="top"><script language="javascript">bild();</script><noscript><img src="../Grafik/RuleTopRot.gif" height="26" width="432"></noscript></td>
<td valign="top" width="100"><font color="#000000"><b><i>Kontakt</i></b></font></td>
</tr>
</table>
</div>
</body>
</html>
Grüße
Thomas