»» Hallo,
ich brauche mal die Hilfe von Euch Profis.
Ich will einen Link erstellen, bei dem die CSS Eigenschaften innerhalb des HTML Elements definiert sind.
Funktionieren tut z.B.<a href="link.html" style="text-decoration:none">Link</a>
Aber ich möchte auch ein a:hover definieren, bekomme es aber nicht hin. Kann mir da jemand weiterhelfen?
Gruß und Kuss,
Manja
Hi,
nimmste einfach dies hier:
<html>
<head>
<style type="text/css">
<!--
a {
font-family: AtiquaSSK;
text-decoration: no underline;
quotes: ' (' ') ';
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: underline;
color: #000000;
}
a:after {
content: open-quote attr(href) close-quote
}
-->
</style>
</head>
</html>