XaraX: Höhe = 100% - 20px

Beitrag lesen

Hallo Hufi,

die einfachste, wenn auch nicht die beste Möglichkeit besteht in der Verschachtelung von Tabellen:

<table width="100%">
 <colgroup>
  <col width="20">
  <col width="*">
 </colgroup>
 <tr>
  <td>Der Freiraum</td>
 </tr>
 <tr>
  <td>
   <table width="100%">
    <tr>
     [...]
    </tr>
   </table>
  </td>
 </tr>
</table>

Gruß aus Berlin!
eddi