Hier ein einfaches Mouseover Beispiel zum einbauen und ausprobieren in Eurer Homepage.
Dieser Code veranlasst
das der Link nur beim drüber fahren unterstrichen ist und das die Schrift dick und andersfarbig wird :
Code
<style type="text/css">
<!--
a
{ text-decoration:none }
a:hover
{
color:#FFFF99;
font-weight:bold;
text-decoration:none;
}
-->
a:text {color:#C34400}
a:link {color:#FFFF00 text-decoration: none}
a:active {color:#E19200 text-decoration: none}
a:visited {color:#CCCC00 text-decoration: none}
</style>
Alles anzeigen