Sign up to create your own snipts, or login.

Public snipts » jmakeig's snipts » css The latest css snipts from jmakeig.

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 */
    

    copy | embed

    0 comments - tagged in  posted by jmakeig on Feb 18, 2009 at 1:50 a.m. EST
  • CSS border radius
    border-radius: 0.8em;
    -webkit-border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    

    copy | embed

    0 comments - tagged in  posted by jmakeig on Feb 18, 2009 at 1:46 a.m. EST
Sign up to create your own snipts, or login.