transparent pngs in IE
1 * html #blah { 2 filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/full/path/to/img.png', sizingMethod='crop'); 3 background:none; 4 cursor:hand; /* only if this is a link */ 5 position:relative; 6 }
DZone Snippets > technoweenie > iesucks
12945 users tagging and storing useful source code snippets
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
Rick Olson http://techno-weenie.net
1 * html #blah { 2 filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/full/path/to/img.png', sizingMethod='crop'); 3 background:none; 4 cursor:hand; /* only if this is a link */ 5 position:relative; 6 }
1 opacity:.7; /* css standard */ 2 filter:alpha(opacity=70); /* IE patch */