Orlando: [Mozilla] CSS-Feinjustierung (Konfiguration)

Beitrag lesen

Hi Cheatah,

a[href^="javascript:"] { color:green !important; }
a[href^="javascript:"][href*="close()"] { display:none !important; } /* praktisch, wenn man window.close() unterbindet */
a[href^="mailto:"]:before { content:url(file:///[...]/mail.png); vertical-align:top; padding-right:2px; }
a[href^="#"]:before { content:url(file:///[...]/down.png);    vertical-align:top; padding-right:2px; }
a[href^="#top"]:before { content:url(file:///[...]/up.png);      vertical-align:top; padding-right:2px; }
*[accesskey]:after { content:" {" attr(accesskey) "}"; }
*[tabindex]:after  { content:" [" attr(tabindex) "]"; }
a font[color] { color:inherit !important; } /* sinnvoll für <a href="javascript:..."><font color="...">...</font></a> */

input[type="reset"]  { display:none !important; }
button[type="reset"] { display:none !important; }

Die Angst vor dem falschen Klick? *g*

Bei einigen Selektoren empfehle je nach Geschmack ich noch "text-decoration:blink !important".

Ein Benutzer-Stylesheet, das die meistgemachten Fehler verdeutlicht: <floet>http://aktuell.de.selfhtml.org/tippstricks/beitrag.htm</floet>

;)

LG Orlando