Gerch2003: Tabelle, zwei Spalten gleichbreit, eine Spalte schmal und fest

Beitrag lesen

Hi,

<table border="0"  width="100%">
<tr>
      <td valign="top"><p> Text 1. Spalte</p></td>
      <td valign="top"><img height="32" width="30" /></td>
      <td valign="top">  <p>Text 2. Spalte</p></td>
    </tr>
</table>

  
Wie wärs denn einfach wenn du der linken und der mittleren Spalte bzw, warum nicht allen, gleich eine feste Größe zuweist?  
  
Also z.B.:  
  

> ~~~html
  

> <table border="0"  width="1000">  
> 	<tr>  
>       <td valign="top" width="485"><p> Text 1. Spalte</p></td>  
>       <td valign="top" width="30"><img height="32" width="30" /></td>  
>       <td valign="top" width="485">  <p>Text 2. Spalte</p></td>  
>     </tr>  
> </table>  
> 

Grüße