Return to Snippet

Revision: 22714
at January 20, 2010 05:12 by IngoWinter


Initial Code
/* 
 * modern browsers (except ie) understand the css3
 * rgba property. it works like the rgb property and
 * adds an aditional parameter a for opacity
 *
 */

p{
    color: rgb(127, 127, 127);
}
p{
    color: rgba(0, 0, 0, 0.5);
}

Initial URL
http://24ways.org/2009/working-with-rgba-colour

Initial Description


Initial Title
RGBA - color definitions with opacity

Initial Tags


Initial Language
CSS