David: CSS problem....

Beitrag lesen

ich habe ein problem mit css, dass unter mac os x richtig angezeigt wird (safari, IE, Netscape), jedoch unter winMe bzw. win 2000 total scheisse aussieht.

so sieht das aus:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>
  <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
  <title>x</title>
  <link href="style.css" rel="stylesheet" media="all">
 </head>

<body>
  <div class="airlock">
   <a id="top"></a>
   <ul class="menu">
   <li><a title="1" href="1.php">Link 1</a>
   <li><a title="2" href="2.php">Link 2</a>
   </ul>
   <div class="face">
   bla
</div>
 </body>

</html>

das style css sieht so aus:

.airlock {
text-align: left;
margin: auto;
width: 750px;
}

.menu {
float: left;
width: 125px;
list-style: none outside;
padding: 0;
margin: 0 10px 0 0;
background: #ffffff;
color: #000;
border: solid 1px #000;
font: 10px/15px verdana, geneva, helvetica, arial, sans-serif;
}

.menu li {
padding: 0;
margin: 0;
border: none;
}

.menu li a {
display: block;
padding: 4px 6px;
margin: 0;
background: #ffffff;
color: #000;
border-top: solid 1px #73a5d3;
border-bottom: solid 1px #39526b;
}

.face {
float: left;
width: 565px;
margin: 0 0 20px 0;
background: #ddd;
color: #000;
border: solid 1px #000;
}

ich habe mal ein bild angehängt, wies sein soll, und wies aussieht! weiß jemand BITTE!(!) wie das zu lösen ist? das treibt mich noch in die verzweiflung!