Champ: Verschiedene Pseudo-Formate auf einer Seite

Beitrag lesen

Hallo Sebastian

Ich habe aber die passende Syntax (für externe CSS-Dateien) leider nicht gefunden.

Vielleicht gibt mir jemand einen Tip?!

<link rel="stylesheet" href="sheet.css">

so klappt es aber auch gut:

<html>
<head>
<title>Unbenannt</title>
<style>
.standard { }
.standard a:active {}
.standard a:hover { Background-Color: blue;color:white}
.standard a:link { font-family: Arial; font-size: 10pt; font-style: normal;color: navy;}
.standard a:visited { }

.standardbold { }
.standardbold a:active {  }
.standardbold a:hover { }
.standardbold a:link { font-family: Arial; font-size: 15pt;font-weight: bold;color: #ff0000; text-decoration: none }
.standardbold a:visited { }

</style>
</head>

<body>
<div class="standard"><a href="xxx.html">Hallo</a></div>
<div class="standardbold"><a href="yyy.html">Halli</a></div>

</body>
</html>

Danke,

Champ