Katharina: Hover bei Bild und Link gleichzeitig

Beitrag lesen

Hi,

sorry, hab ich übersehen. Hier die korrekte Version:

HTML:

<a class="link">
  <font>weiter</font>
  <span/>
</a>

CSS:

.link {
  text-decoration: none;
  white-space: nowrap;
}
.link font {
  font-family: Arial;
  font-size: 11px;
  margin: 0px;
  padding: 0px;
  color: black;
  text-decoration: underline;
}
.link span {
  background: transparent url(bild_.gif) 100% 70% no-repeat;
  padding-left: 13px;
  width: 8px;
}
.link:hover font {
  color: red;
  text-decoration: underline;
}
.link:hover span {
  background: transparent url(bild_hover.gif) 100% 70% no-repeat;
}

Kann mir jemand helfen?
Vielleicht wenn du das HTML-Beispiel so (vollständig) postest, daß es zu deinem geposteten CSS paßt.

bydey