CSS: Unterschied zwischen den Versionen

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

Version vom 18. August 2006, 09:25 Uhr

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)