CSS

Aus Linupedia.org
Wechseln zu: Navigation, Suche

Dynamische Pseudo-Klassen: :hover

/*line-height: 2.5; habe ich für den Zeilenabstand eingefügt*/
.bericht {
  vertical-align: middle;
  font-size: 12px;
  font-style: italic;
  color: #0000FF;
  text-align: left;
  padding-top: 20px;
  padding-left: 0px;
  height: 10px !important;
  text-decoration: none;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  line-height: 2.5;
}

.bericht a:link {
   color: #0000FF;
}

.bericht a:visited {
   color: #0000FF;
}

.bericht a:hover {
   color: #0000FF;
   text-decoration: underline;
}

.bericht a:active {
   color: #0000FF;
   text-decoration: none;
}


http://www.css4you.de/hover.html --Yehudi 11:24, 18. Aug 2006 (CEST)