DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Opacity
// description of your code here
div.caption p {
opacity: .5; /* Firefox 1.5, Safari, Opera 9 */
-moz-opacity: .5; /* Firefox 1.0.x */
filter: alpha(opacity=50); /* IE */
}





