tempo74: Halbtransparente Fläche

Beitrag lesen

Hallo Leute!

Habe ein kleines Problem.

Ich habe eine Tabelle die auf einem Bild platziert ist. Diese Tabelle hat eine halbtransparente Fläche, damit man das Bild im Hintergrund sieht. Auf diese halbtransparente Fläche kommen ein paar Bilder drauf.

Nun mein Problem, diese Bilder die auf der halbtransparenten Fläche sind, werden auch halbtransparent dargestellt.

Wie kann ich es lösen, damit nur die Fläche unterhalb, aber nicht die Bilder halbtransparent sind?

Mein Code:

.table_small_images {
   background-color:#000000;
   filter:alpha(opacity=60);
   -moz-opacity: 0.6;
   opacity: 0.6;
}

<table cellspacing="0" cellpadding="10" class="table_small_images">
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="5">
<tr>
<td><img src="image.jpg" alt=""><img src="image.jpg"></td>
</tr>
</table></td>
</tr>
</table>