Beispiel:Tabelle-7-Schichtenmodell.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Schichtenmodell einer Tabelle</title> <style> table, th, td {border: 1px solid black; border-spacing: 10px;} th, td {padding: 20px;} #tabelle {background-color: #8a9da8;} #spaltengruppe {background-color: #df6c20;} #spalte {background-color: #5c82d9;} #zeilengruppe {background-color: #8db243; color: #ffffff;} #zeile {background-color: #e7c157;} #zelle {background-color: #c32e04;} </style> </head> <body>

Schichtenmodell einer Tabelle

<colgroup id="spaltengruppe"> <col id="spalte"> <col> <col> </colgroup> <colgroup> <col> </colgroup> <thead> </thead> <tbody id="zeilengruppe"> </tbody>
Tabelle zur Veranschaulichung des Schichtenmodells
Ü 1 Ü 2 Ü 3 Ü 4
Zelle 1 Zelle 2 Zelle 3 Zelle 4
Zelle 5 Zelle 6 Zelle 7 Zelle 8

</body> </html>