Hillffee!!
Warum will Netscape nicht so wie ich will??
Bim I-Explorer funktioniert alles einwandfrei, aber Netscape werden keine Tabellen-Linien dargestellt und die "Zusatz"- Spans werden einfach nicht angezeigt(ab Z.10-12 und Z.170-173).
Warum?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<script language="JavaScript">
<!--
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
function init() { // werte vom Array in die jeweiligen Felder schreiben
obj1=document.getElementById("Zusatz1");
obj2=document.getElementById("Zusatz2");
obj3=document.getElementById("Zusatz3");
obj1.innerHTML = " Text1";
obj2.innerHTML = " Text2";
obj3.innerHTML = " Text3";
}
//-->
</script>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style1 { /*fr die Anforderungen */
color: #0000FF;
font-family: "Times New Roman", Times, serif;
}
.style2 {font-family: Arial, Helvetica, sans-serif}
.L { /* Ab hier die CSS'S fr die Tabelle */
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: solid;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.R {
border-top-style: none;
border-right-style: solid;
border-bottom-style: none;
border-left-style: none;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.RLOU {
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.RU {
border-top-style: none;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: none;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.LUR {
border-top-style: none;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.ohne {
border: none;
}
.LR {
border-top-style: none;
border-right-style: solid;
border-bottom-style: none;
border-left-style: solid;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.RLO {
border-top-style: solid;
border-right-style: solid;
border-bottom-style: none;
border-left-style: solid;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
.RO {
border-top-style: solid;
border-right-style: solid;
border-bottom-style: none;
border-left-style: none;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-color: #000000;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
}
-->
</style>
</head>
<body onLoad="init();">
<form name="form" method="post" action="" >
<table width="983" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<th width="982" height="54" class="RLOU" scope="col"><h2>Bla</h2></th>
</tr>
</table>
<table width="983" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<th height="50" align="right" valign="bottom" bgcolor="#00CCCC" class="L" scope="col"> </th>
</tr>
</table>
<table width="983" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr class="RLO">
<td colspan="5" align="center" valign="bottom" class="RLO">Auswirkung1+ <p class="style1"><span id="Zusatz1"></span></p> </td>
<td colspan="5" align="center" valign="bottom" class="RO">Auswikung2 + <p class="style1"><span id="Zusatz2"></span></p> </td>
<td colspan="5" align="center" valign="bottom" class="RO">Auswirkung3 + <p class="style1"><span id="Zusatz3"></span></p> </td>
</tr>
<tr bgcolor="#00CCCC">
<td colspan="5" align="center" valign="bottom" class="LUR"> </td>
<td colspan="5" align="center" valign="bottom" class="RU"> </td>
<td colspan="5" align="center" valign="bottom" class="RU"> </td>
</tr>
</table>
<input name="Submit" type="submit" disabled="disabled" value="Submit">
</form>
</body>
</html>