Posted by: spaceufo on: October 1, 2007
*source : http://www.w3schools.com/css/css_reference.asp
*The copyright of content in this post is w3schools.com
Browser support: IE: Internet Explorer, M: Mac IE only, F: Firefox, N: Netscape.
W3C: The number in the “W3C” column indicates in which CSS recommendation the property is defined (CSS1 or CSS2).
Background
Property
Description
Values
IE
F
N
W3C
background
A shorthand property for setting all background properties in one declaration
background-color
background-image
background-repeat background-attachment background-position
4
1
6
1
background-attachment
Sets whether a [...]
Posted by: spaceufo on: October 1, 2007
Explorer browser
filter:alpha(opacity=80);
Firefox
1.7 over version -> opacity:0.8;
Etc version -> -moz-opacity:0.8;
Transparency: the ‘opacity’ property in Firefox
Name: opacity
Value: <alphavalue> | inherit
Initial: 1
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual
Computed value: The same as the specified value after clipping the <alphavalue> to the range [0.0,1.0].
<alphavalue>
Syntactically a <number>.
The uniform opacity [...]