Jens_Thomas
Neues Mitglied
ola, ich hab nen problem mit der aktiv farbe von nem link.
Die farbe die der link als aktiv haben sollte hat er bei onklick, also nur in dem moment wo ich drauf klicke und ich hab kein plan wieso.
Hier mal nen muster vom Quelltext:
Die farbe die der link als aktiv haben sollte hat er bei onklick, also nur in dem moment wo ich drauf klicke und ich hab kein plan wieso.
Hier mal nen muster vom Quelltext:
HTML:
<style type="text/css">
<!--
.style1 {font-family: Arial, Helvetica, sans-serif}
a {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #FF0000;
}
a:link {
text-decoration: none;
color: #000000;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
color: #0000FF;
}
-->
</style>
</head>
<body>
<p>Titel</p>
<p>
<a href="link_1.html" target="mainFrame">Link zu 1</a>
<a href="link_2.html" target="mainFrame">Link zu 2</a>
<a href="link_3.html" target="mainFrame">Link zu 3</a>
</p>
</body>