Hallo,
ich will eine Tabelle mit zwei Spalten erstellen. Die linke Spalte soll eine Breite von 30% und rechte Spalte eine Breite von 70% haben. Zum Gestalten des Tabellen kopfes nutze ich div-Container.
div#menueKopfLinks {
width: 30%;
height: auto;
background-color: #22FFFF;
margin: 0px 0px 0px 0px;
padding: 0px;
font-family: Arial;
font-size: 12pt;
font-weight: bold;
text-align: center;
}
div#menueKopfRechts {
width: 70%;
height: auto;
background-color: #55FFFF;
margin: 0px 0px 0px 0px;
padding: 0px;
font-family: Arial;
font-size: 12pt;
font-weight: bold;
text-align: center;
}
table {
width: 100%;
margin: 1px 1px 1px 1px;
padding: 2px;
border: 1px solid black;
font-family: Arial;
font-size: 10pt;
color: #000000;
}
Die Tabelle wird wie folgt definiert:
<table>
<tr>
<td>
<div id="menueKopfLinks">
Menü
</div>
</td>
<td>
<div id="menueKopfRechts">
Inhalt
</div>
</td>
</tr>
</table>
Mein Problem ist, dass zwischen beiden Spalten ein großer Abstand existiert. Wenn ich in div menueKopfLinks und menueKopfRechts
width: 30%; bzw. width: 100%; deaktiviere, dann haben beide Spalten
wie gewünscht fast keinen Abstand; aber gleich groß, was nicht gewollt ist.
Was muss ich ändern?
Hartmut
en
ich will eine Tabelle mit zwei Spalten erstellen. Die linke Spalte soll eine Breite von 30% und rechte Spalte eine Breite von 70% haben. Zum Gestalten des Tabellen kopfes nutze ich div-Container.
div#menueKopfLinks {
width: 30%;
height: auto;
background-color: #22FFFF;
margin: 0px 0px 0px 0px;
padding: 0px;
font-family: Arial;
font-size: 12pt;
font-weight: bold;
text-align: center;
}
div#menueKopfRechts {
width: 70%;
height: auto;
background-color: #55FFFF;
margin: 0px 0px 0px 0px;
padding: 0px;
font-family: Arial;
font-size: 12pt;
font-weight: bold;
text-align: center;
}
table {
width: 100%;
margin: 1px 1px 1px 1px;
padding: 2px;
border: 1px solid black;
font-family: Arial;
font-size: 10pt;
color: #000000;
}
Die Tabelle wird wie folgt definiert:
<table>
<tr>
<td>
<div id="menueKopfLinks">
Menü
</div>
</td>
<td>
<div id="menueKopfRechts">
Inhalt
</div>
</td>
</tr>
</table>
Mein Problem ist, dass zwischen beiden Spalten ein großer Abstand existiert. Wenn ich in div menueKopfLinks und menueKopfRechts
width: 30%; bzw. width: 100%; deaktiviere, dann haben beide Spalten
wie gewünscht fast keinen Abstand; aber gleich groß, was nicht gewollt ist.
Was muss ich ändern?
Hartmut
en