Transparenz CSS

  • Hallo,
    reicht es aus nur

    HTML
    opacity: 0.75;

    zu benutzern um Transparenz in allen Browsern zu ermöglichen,
    oder muss ich wirklich jedem Browser das seine geben:

    HTML
    filter:alpha(opacity=75); -moz-opacity: 0.75; opacity: 0.75;

    Danke

  • 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]