Revision: 22714
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
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