Kaffeetasse: Bilderlinks sollen nicht unterstrichen sein

Beitrag lesen

Moin,
Meine Hellsehrischen Fähigkeiten verraten mir, dass Dein Links alle eine Klasse besitzen?

Nein. Hier ein Auszug aus meiner CSS-Datei:

body {
  font-family: verdana, helvetica, sans-serif;
  font-size: 12px;
  color: #FFF;
  margin: 0;
  background: #000;
}

img {
  border: 0;
}

a {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px dotted #FFF;
}

a:link {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px dotted #FFF;
}

a:visited {
  color: #8EBFFA;
  text-decoration: none;
  border-bottom: 1px dotted #8EBFFA;
}

a:hover {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid #FFF;
}

a:active {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid #FFF;
}

a:focus {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid #FFF;
}

In der HTML-Seite werden die Links einfach mit <a href="blah.html">blah</a> bzw. <a href="blah.html"><img src="blah.png" width="100" height="100" alt=""></a> definiert.