i have a Problem
the following Code show a table with 50% transperency
this works fine but the content (texts or picture ie.) should not be
transparent
have an idea how it work ?
the word "Information" should be viewable with no transparenz
<table align="left" class="informationbox">
<tr>
<td width="200">
<img src="../blackdot.png" width="30" height="30"/>
</td>
<td valign="center">
<div>Informationen - without alpha</div>
</td>
<td valign="center">
<div>with alpha transparenz</div>
</td>
</tr>
</table>
the css conzains the following lines
.informationbox{
filter:Alpha(opacity=25);
}
sorry for my bad english
Greets
versuch es mit einem
.notrans{
position: absolute;
}
<td valign="center">
<div class="notrans">Informationen - without alpha</div>
</td>
dann muesste das gehen
Gruß Lars
"Jens Marder" <edgar...@tonline.de> schrieb im Newsbeitrag
news:cbfd1v$r8a$05$1...@news.t-online.com...