The followings are some ways of making one element transparent. Since different browser’s compatibility is different, we need many ways to write the opacity in order to fit as many as browsers as possible.
rgba(xxx,xxx,xxx,a)
: This attribute has four parameters and the last one specify the opacity. The value of opacity is can be arbitrary between 0-1.
0 means totally transparent;
1 means not transparent.
0.5 means half trans parent.
Another is directly wrote opacity: 0.8
. This is the same as the forth parameter of rgba.
This code can fit many but the IE that is lower than version 8.
But this supports IE6. However, this effect can’t be tested under IE Tester.
filter: alpha(opacity=a);
a is any value between 0 and 100; a represents the degree of opacity.
0 stands for not transparent.
100 stands for not transparent.