Gernot Back: verschiedene Tabellenbreite innerhalb einer Tabelle

Beitrag lesen

Hallo mook,

ohne Tim zu nahe treten zu wollen, die klassische Lösung ist das nicht, dann schon eher diese hier:

  
<table style="[code lang=css]width:100%;table-layout:fixed
~~~" border="1">  
<colgroup>  
  <col width="20%">  
  <col width="60%">  
  <col width="20%">  
</colgroup>  
<tr>  
 <td colspan="2" style="`width:80%`{:.language-css}">&nbsp;</td>  
 <td style="`width:20%`{:.language-css}">&nbsp;</td>  
</tr>  
<tr>  
 <td  style="`width:20%`{:.language-css}">&nbsp;</td>  
 <td colspan="2"  style="`width:80%`{:.language-css}">&nbsp;</td>  
</tr>  
</table>  
[/code]  
  
Gruß Gernot