• 200614 Jun

    The Opacity declaration sets how opaque an element is. An opacity value of 1 means the element is fully opaque; an opacity value of 0 means an element is not at all opaque, i.e. fully transparent.

    div { background-color: rgb(255,0,0); opacity: 1; }

    Webkit, Gecko and Opera browsers all support Opacity.

    The RGBA declaration allows you to set opacity (via the Alpha channel) as part of the color value.

    div { background-color: rgba(255,0,0,1); }

    This is supported in Webkit and the first alpha of Firefox 3.

    The key difference between the two declarations is this:

    Opacity sets the opacity value for an element and all of its children;
    RGBA sets the opacity value only for a single declaration.

    Here’s an example.

    Example of Opacity

    background-color: rgb(0,0,255); opacity: 0.5;

    The background color of the second div has been set to blue, and the opacity set to half. The text inside the div has inherited the opacity value from its parent, and you can see the yellow div showing through.

    Example of RGBA

    background-color: rgba(0,0,255,0.5);

    The background color has been set to blue, and the opacity set to half. The text inside the div does not inherit the opacity value, as it acts solely on the background-color declaration, so the text does not reveal the yellow div behind.

    You can skip to the end and leave a response.

  • Comments

Leave a Comment

(will not be published)