spaeter___: firefox ignoriert link formatierung! (via externe css)

Beitrag lesen

hallo,

mit den Angaben sollte es doch funktionieren, meine Testseite sah so aus wie gewünscht.

font-color:#296dc1;

font-color gibt's aber nicht Dann wird es wohl an deiner externen Datei liegen ...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
 <title>test 13.5px </title>
 <meta http-equiv="Content-Style-Type" content="text/css">

<style>

#navi{
  margin:13.5px;
         padding:13.5px;
         width:250px;
         height:100%;
 background-color:#ffffdd;
}

a.link2:link, a.link2:visited{
  display:block;
  height:23px;
         width:223px;
         background-image:url(mygif.gif);
         background-repeat:no-repeat;
     background-color:yellow;
         color:#164f95;
         font-size:10px;
         font-family:verdana, arial, helvetica, sans-serif;
         text-decoration:none;
         padding-top:5px;
         padding-left:35px;}

a.link2:hover{
  color:red;
         text-decoration:underline;}
</style>
</head>

<body>

<div id="navi">
         <img src="bilder.png" alt="bilder" ><br>
 <a href="inhalt_freunde.html" class="link2">Freunde</a>

</div>
....

</body>
</html>