How to:
One more snippet …
I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool summary.
take this:
div .test {
background: rgb(255, 255, 255); /* fallback for all old guys */
background: rgba(2255, 255, 255, 0.5);
}
Internet Explorer need a special treatment, via conditional comment
<!--[if lt IE 9]>
div .test {background:#fff; filter:alpha(opacity=50);}
<![endif]-->
Thats all. Enjoy it.
Related posts:
0 Responses to “How to use transparency with different Browsers”
Leave a Reply