Jonathan: font-weight im Firefox

Beitrag lesen

Hallo,

Klappt hier ohne Probleme. Es wäre allerdings besser gewesen, du würdest gleich ein funktionierendes Beispiel ohne PHP-Code und mit style-tag reinstellen.

Mein getesteter Quellcode sieht so aus:

  
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">  
<html>  
  <head>  
    <title>Test</title>  
    <style type="text/css">  
a.textlink:link {  
font-weight:700;  
text-decoration:none;  
color:#000000;  
}  
  
a.textlink:visited {  
font-weight:700;  
text-decoration:none;  
color:#000000;  
}  
  
a.textlink:active {  
font-weight:700;  
text-decoration:none;  
color:#000000;  
}  
  
a.textlink:hover {  
font-weight:700;  
text-decoration:none;  
color:#FF0000;  
}  
    </style>  
  </head>  
  <body>  
    <div style='margin-top:10px;margin-bottom:10px;'>  
      <a href='' class='textlink'>bearbeiten</a><br>  
      <a href='' class='textlink'>löschen</a>  
    </div>  
  </body>  
</html>  

Jonathan