Rahmen um eine Tabelle

  • Hallo ich hab ein Problem ich möchte um eine Tabelle einen ganz normalen Rahmen ziehen. Jedoch wird bei meinem Rahmen immer ein kleiner Schatten eingefügt (siehe Bild) wie kann ich diesen Schatten entfernen?

    [Blockierte Grafik: http://mephisto21.me.funpic.de/problem.JPG]

    Der Code dazu sieht folgendermaßen aus:

    Code
    <table width="185" height="300" border="2" bordercolor="#990000" cellspacing="0" cellpadding="0" style="border-style:solid" bgcolor="#ebd9c5">
    			<tr>
    				<td valign="top">
    
    				###MENU_LINKS###
    				</td>
    			</tr>
    
    </table>

    Das Menü wird übrigens mit Typo3 erzeugt...nur falls sich wer fragt wo der code dazu ist ;)

  • Moin!

    Mach's mal so:

    Code
    <table style="width:185px;height:300px;border:2px solid #990000;background-color:EBD9C5;"  cellspacing="0" cellpadding="0">
      <tr>
        <td valign="top">
    
                ###MENU_LINKS###
        </td>
      </tr>         
    </table>

    G.a.d.M.

    Ronald