von Julius, Philip und Ben
Beispiel:
.meine-tabelle1 {
width: 500px; (feste Breite)
}
oder
.meine-tabelle2 {
width: 100%; (gesamte Breite des Bildschirms)
}
Beispiel:
.meine-tabelle {
height: 200px;
}
Beispiel:
meine-tabelle td {
Breite width: z.b. 200px;
Höhe height: z.b. 50px;
}
Beispiel:
table {
width: auto;
}
(wird nicht automatisch angepasst)
Beispiel:
table {
table-layout: fixed;
width: 400px;
}
td {
width: 200px;
}