CSS: Unterschied zwischen den Versionen
Yehudi (Diskussion | Beiträge) |
Yehudi (Diskussion | Beiträge) |
||
| Zeile 1: | Zeile 1: | ||
Dynamische Pseudo-Klassen: :hover | 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 | http://www.css4you.de/hover.html | ||
| + | --[[Benutzer:Yehudi|Yehudi]] 11:24, 18. Aug 2006 (CEST) | ||
Version vom 18. August 2006, 09:24 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)