see this html code:
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="FILTER: alpha(opacity=50); ; -moz-opacity: .50; opacity: .50;">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
it uses of opacity style to show some of content is under the table. there is no problem until now. but when i use a picture in this table and i dont want opacity effects in this picture it does not work.
see:
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="FILTER: alpha(opacity=50); ; -moz-opacity: .50; opacity: .50;">
<tr>
<td><div style="FILTER: alpha(opacity=100); ; -moz-opacity: .1; opacity: .1;"><img src="1.JPG" width="1280" height="1600" /></div></td>
</tr>
<tr>
<td>hi world</td>
</tr>
</table>
<div style="FILTER: alpha(opacity=100); ; -moz-opacity: .1; opacity: .1;"> does not work and my picture has 50 opacity. i want this picture does not has any opacity. in other mean all conent of table has opacity excepting this picture.
any idea?