Thomas J.S.: Netscape hällt sich nicht an HTML 4.0, oder?

Beitrag lesen

Hallo joern!

Check ausgeführt! Ohne Erfolg =:-(((
Ich denke die haben bei Netscape im Programmcode Bugs hinterlassen.

<table>
<TR>
<TD STYLE=" background-image:url('nicht-gebraucht/web_x.gif'); background-repeat:no-repeat;">Logo</TD>
</TR>
</table>

Das Problem ist:

font:bold;

diese Angaben werden von NS bloß ignoriert.

border:solid;
width:170px;
height:90px;

so geht es in etwa:
<html>
<head>
<title>test 4</title>
<style type="text/css">
<!--
.logo {
background-image:url('ordner/bild.gif');
background-repeat:no-repeat;
/*border:solid 3px silver;*/
text-align:center;
font-weight:bold;
color:white;
}
-->
</style>
</head>
<body>

<table border="3" cellpadding="0" cellspacing="0">
<tr>
<td class="logo" width="170" height="90">Logo</td>
</tr>
</table>

</body>
</html>

Grüße
Thomas