X
x12x13
anfangs ist der link weiß
wenn man rübergeht ist er gelb
und wird dann zu rot.
kann jemand helfen ?
wenn man rübergeht ist er gelb
und wird dann zu rot.
kann jemand helfen ?
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<style type="text/css">
#link1 {
color: #FFFFFF;
}
#link2 {
color: #FFFF00;
}
#link3 {
color: #FF0000;
}
</style>
</head>
<body>
<a href="irgendwas.html" id="link1" onMouseOver="this.id='link2'" onMouseOut="this.id='link3'">Link</a>
A:link {
text-decoration: none;
font-family: Arial;
font-size: 9px;
color: #FFFFFF;
}
A:visited
text-decoration: none;
font-family: Arial;
font-size: 9px;
color: #FF0000;
}
A:hover {
color: #FFFF00;
text-decoration:none;
font-family: Arial;
font-size: 9px;
}