Nick: 2 probleme

Beitrag lesen

Hallo,
ich hab zwei  sachen.

-Das, beim style definierte vertical-align:top; geht nicht,warum ?

-Mit Netscape 6.2 zeigt er mir den mittleren table nicht so an wie beim explorer. Der zeigt die untere Zeile des tables und die obere nicht wie angegeben mit 10% an, sondern mehr. Warum ?

Meine datei sieht bisher so aus:

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sirnick.de 2002</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
.text {
 font-family: "Futura Lt BT";
 font-size: 14px;
 color: #FFFFFF;
 }
.oben
   {
 text-decoration:underline;
 font-weight:bold;
 vertical-align:top;
    }
-->
</style>
</head>

<body class="text">
<table width="100%" height="100%" border="0">
  <tr>
    <td height="10%" colspan="3"> </td>
  </tr>
  <tr>
    <td width="10%"> </td>
    <td style="background-color:#000059">
<table width="100%" height="100%" border="0">
        <tr>
          <td> </td>
          <td height="80">
            </td>
          <td> </td>
        </tr>
        <tr>
          <td><div class="oben">Menü</div>
             </td>
          <td> </td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
          <td> </td>
        </tr>
      </table></td>
    <td width="10%"> </td>
  </tr>
  <tr>
    <td height="10%" colspan="3"> </td>
  </tr>
</table>
</body>
</html>

Danke

Nick