/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* * 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); }
URL: http://24ways.org/2009/working-with-rgba-colour