Christian: Tabelle

Beitrag lesen

Hi, ich möchte mit einer Tabelle einen Schatteneffekt erzeugen. Unten habe ich eine lösung von mir eingefügt allerdings glaube ich nicht das dies bei allen Browsern funktioniert. Habe z.Z. nur IE installiert könnt ihr den Code vielleicht mal mit einem anderen Browser testen?

<html>
<head>
  <title>500 Internal Server Error</title>

<style type="text/css">
  body           { font-family:verdana; }
  table.error404 { border:2px solid red;font-size:12px }

span.error_nr   { font-size:24px; color:red; }
  span.error_head { font-size:18px; }
  span.error_text { font-size:14px; }
  span.error_link { font-size:12px; }

</style>
</head>
<body bgcolor="#F3F2F2" link="#12B409" alink="#12B409"  vlink="#12B409">
<table width="100%" height="100%">
   <tr>
      <td align="center" valign="middle">

<table align="center" cellspacing="0" cellpadding="0" border="0">
      <tr>
      <td colspan="2" rowspan="2">

<table width="600" class="error404" cellpadding="20">
         <tr>
            <td>
            <span class="error_nr">
            <b>500 Internal Server Error</b>
            </span>

</td>
         </tr>
         <tr>
            <td>
            <span class="error_head">
            There is an internal server error on the site you are trying to contact.
            </span>
            <p></p>

<span class="error_text">
            Unfortunately, there's nothing you can do other than contact the site administrator.<p></p>
            </span>

</td>
         </tr>
      </table>

</td>
      <td style="width:7px;"></td>
      </tr>

<tr>
      <td bgcolor="#CCC7C7" style="height:15px;"></td>
      </tr>

<tr>
      <td style="height:7px;"></td>
      <td bgcolor="#CCC7C7" style="width:36px;"></td>
      <td bgcolor="#CCC7C7"></td>
      </tr>

</table>

</td>
   </tr>
</table>

</body>
</html>