Public snipts »
jmakeig's
snipts » css
showing 1-2 of 2 snipts for css
-
∞ CSS background transparency
background: rgba(0,0,0,0.2); /* R, G, B, Alpha */ /* IE 7 */ background:url("blah.png"); /* I’m not sure why this is necessary */ /* Hack the gradient filter to get the same effect. */ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000,endColorstr=#33000000); /*AARRGGBB: 00 - FF => 0 - 1, scale accordingly*/ zoom: 1; /* hasLayout */
-
∞ CSS border radius
border-radius: 0.8em; -webkit-border-radius: 0.8em; -moz-border-radius: 0.8em;



CSS Mastery: Advanced Web Standards Solutions