Published in: CSS
|
|
|
URL: http://maisonbisson.com/blog/post/12011/css-transparency-settings-for-all-browsers/
Para dejar un elemento transparente en cuatro motores de browsers.
Expand |
Embed | Plain Text
.transparent_class { opacity: 0.5; /* the standards compliant attribute that all browsers should recognize, but... */ filter:alpha(opacity=50); /* for IE */ -khtml-opacity: 0.5; /* for old Safari (1.x) */ -moz-opacity:0.5; /* for old skool Netscape Navigator */ }
You need to login to post a comment.