Transparenz CSS
-
-
Ja den das Problem ist Transparenz wird in allen Browsern anders dargestellt
Hier ein Link:
-
Danke hast BW. Generell geht aber opacity: im aktuellen FF?
-
Ja opacity geht im opera, ff, Safari ...Dafür andere nicht wie netscape , ie und old safari
Code[LIST] [*][B]opacity: 0.5;[/B] This is the “most important” one because it is the current standard in CSS. This will work in most versions of Firefox, Safari, and Opera. This would be all you need if all browsers supported current standards. Which, of course, they don’t. [*][B]filter:alpha(opacity=50);[/B] This one you need for IE. [*][B]-moz-opacity:0.5;[/B] You need this one to support way old school versions of the Mozilla browsers like Netscape Navigator. [*][B]-khtml-opacity: 0.5;[/B] This is for way old versions of Safari (1.x) when the rendering engine it was using was still referred to as KTHML, as opposed to the current [URL='http://webkit.org/']WebKit[/URL]. [/LIST]