lollypopbln: IE zeigt alles richtig an Firefox nicht

Beitrag lesen

Hallo ihr da draussen,

wo steckt der fehler ich will buttons via css in html  einfügen  IE zeigt alles perfekt an firerfox nicht
an bei die  Jeweiligen documente..

hoffe ihr könnte mir helfen

danke  im Voraus

CSS

body { background-color:;
font-family:;
font-size:;
letter-spacing:;
line-height:;
color:;
}
a:link, a:active, a:visited {color:;
text-decoration:none;
}
a:hover { color:ff0000;
text-decoration:none;
}

.menu a:link, .menu a:active, .menu a:visited { background-image:url(D:/hpneu/button.png);
color:#ffffff;
text-align:center;
font-size:20px;
width:150px;
height:40px;
padding:8px,6px,0px,6px;
}
.menu a:hover { background-image:url(D:/hpneu/button_over.png);
color:#c5c5c5;
text-align:center;
font-size:22px;
width:150px;
height:40px;
padding:0px,6px,0px,6px;
}
#menu { position:absolute;
margin:100px,0px,0px,150px;
width:auto;
height:40px;
border:0px solid #000000;

HTML

<html>
 <head>
  <title>Meine Homepage</title>
  <link rel="stylesheet" type="text/css" href="D:/hpneu/new3.css">
 <head>
 <body>
  <div id="menu" class="menu">
   <a href="">HOME</a><a href="">123</a>
  </div>
 </body>
</html>