We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

sendoa on 12/01/06


Tagged


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

damarev
Hirmine
miziomon
vali29


Opacidad en diferentes navegadores


Published in: CSS 


Diferentes formas de establecer la opacidad de elementos para diferentes navegadores

  1. opacity: 0.7; /* Safari, Opera */
  2. -moz-opacity:0.70: /* FireFox */
  3. filter: alpha(opacity=70); /* IE */

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: miziomon on December 7, 2006

from firefox2 -moz-opacity specification is not necessary, because w3c standard opacity is supported.

You need to login to post a comment.