auch wenn ich gefahr laufe eine schelte zu bekommen, weil das thema evt schon behandelt und übersehen worden ist...
ich habe vor alle texte/links per css zu formatieren...bis jetzt funktioniert alles und nach self html habe ich versucht unterklassen für links zu definieren.
d.h. ich will einmal links die bei a:hover die farbe wechseln und um ein paar pix einrücken und ich will links welche nur bei a:hover die farbe wechseln... in einem test blieben die formatierungen im netscape erhalten ( bold etc) jetzt interpretiert er sie gar nicht mehr. unten füre ich mal das listing auf... eigendlich müsste ich an alles gedacht haben und browserkompatibel ist es ja auch?! oder eben doch nicht? danke für antwort...
marcus
a:active.eins {
color:#ff6633;
font-style:normal;
font-weight:bold;
font-size:11pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
text-indent:7pt;
letter-spacing:1px;
}
a:hover.eins {
color:#ff6633;
font-style:normal;
font-weight:bold;
font-size:11pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
text-indent:7pt;
letter-spacing:1px;
}
a:link.eins {
color:#000080;
font-style:normal;
font-weight:bold;
font-size:11pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
letter-spacing:1px;
}
a:visited.eins {
color:#000080;
font-style:normal;
font-weight:bold;
font-size:11pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
text-indent:7pt;
letter-spacing:1px;
}
a:link.zwei {
color:#000080;
font-style:normal;
font-weight:bold;
font-size:9pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
}
a:hover.zwei {
color:#ff6633;
font-style:normal;
font-weight:bold;
font-size:9pt;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
}
im body bspweise
<a href="?.html" target="_blank" title="zur startseite" class="eins"> HOME</a>
<a href="repro" class="zwei"> KOPIEN UND REPRO</a>