Hallo Sandra
ich habe eine Tabelle (800 Breit) mit 3 Spalten erstellt und möchte diese in unterschiedlich große Einzelspalten Teilen. Wie stelle ich dies am besten mit css an? Meine Versuche sind alle gescheitert.
<table border="0" cellpadding="0" cellspacing="0" width="800">
<tr>
<td>Links</td>
<td>Mitte</td>
<td>Rechts</td>
</tr>
</table>
mit CSS würde ich das so machen:
HTML:
<table border="0" cellpadding="0" cellspacing="0" width="800">
<tr>
<td id="links">Links</td>
<td id="mitte">Mitte</td>
<td id="rechts">Rechts</td>
</tr>
</table>
CSS:
#links {
width: 120px;
}
#mitte {
width: 560px;
}
#rechts {
width: 120px;
}
HTH
Werner