Klaus: Transparenz (glaub neu... :) )

Beitrag lesen

Erstmal herzlichen Dank für die schnelle Hilfe! Mein Code ist der folgende:

  
<html>  
<head>  
 <style type="text/css">  
  body  
  {  
   margin: 0;  
   padding: 0;  
   background-color: #ffffff;  
   color: #ff0000;  
   font-family: Verdana,Helvetica,Arial;  
   font-size: 21;  
  }  
  
  div#wrapper  
  {  
   border: 1px solid #333333;  
   padding: 20px;  
   background: #ffffff;  
   margin-top: 125px;  
   filter: alpha(opacity=70);  
   opacity: 0.7;  
   -moz-opacity: 0.7;  
  }  
  
  div#linkeSpalte  
  {  
   float: left;  
   width: 200px;  
   height: 337px;  
   vertical-align: top;  
  }  
  
  div#mittlereSpalte  
  {  
   margin-left: 280px;  
   width: 200px;  
   height: 337px;  
   vertical-align: top;  
  }  
  
  div#rechteSpalte  
  {  
   float: right;  
   width: 200px;  
   height: 337px;  
   vertical-align: top;  
  }  
 </style>  
</head>  
  
<body background="./bg1.jpg" style="background-repeat:repeat-x;" >  
  
<table style="padding:0px; margin:0px; width:100%; height:600px; border:1px; border-collapse:collapse;">  
<tr>  
 <td style="width:200px;"></td>  
 <td background="./bg2.jpg" style="width:800px; text-align:left; vertical-align:top;">  
  <div id="wrapper">  
   <div id="linkeSpalte">  
    Wir machen durch bis morgen früh  
   </div>  
   <div id="rechteSpalte">  
    und singen  
   </div>  
   <div id="mittlereSpalte">  
    Bummsfallera  
   </div>  
  </div>  
 </td>  
 <td></td>  
</tr>  
</table>  
  
</body>  
</html>