Beispiel:Caption.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!doctype html> <html lang="de">

 <head> 
   <meta charset="utf-8">
   <title>Tabellenbeschriftung</title>
   <style>
     table {
           caption-side: bottom;
      }
     caption {
       background-color: #fdfcf3; 
       border: thin solid #e7c157;    

padding-top: 1em; margin-top: 1em;

     }
      table, th, td {
           border: thin solid;
           border-collapse: collapse;
      }
   </style> 
 </head>
 <body>
<thead> </thead> <tfoot> </tfoot> <tbody> </tbody>
Verzeichnis der Teilnehmer
Nr. Name Vorname Wohnort
Nr. Name Vorname Wohnort
1 Müller Max Minden
2 Siegert Siegfried Siegen
 </body>

</html>