Can someone help me changing a table opacity? Is it possible?
The table is:
Quote:
<table style="width: 500px; height: 50px; font-family: arial;" id="one" class="stats" cellspacing="0">
<tr>
<td class="hed" colspan="2">Title:</td>
</tr>
<td style="text-align: justify;" ="">
(...)
</td>
</tr>
</table>
|
The css code is:
Quote:
.transparent_class {
/* IE 8 */
background:#000;
-ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=5 0)”;
/* IE 5-7 */
filter: alpha(opacity=50);
/* Netscape */
-moz-opacity: 0.5;
/* Safari 1.x */
-khtml-opacity: 0.5;
/* Good browsers */
opacity: 0.5;
}
|
a
nd this can helps too:
Quote:
- #c-transparent {
- opacity: 0.7;
- -moz-opacity: 0.7;
- -khtml-opacity: 0.7;
- /* filter: alpha(opacity=70);*/
- filter:progid:DXImageTransform.Microsoft.Alpha(opa city=70);
- }
|
Last edited by chrishirst; 03-25-2011 at 11:56 AM..
|