SELF-Treffen in Mannheim 2025

SELFHTML wird 30 Jahre alt!
Die Mitgliederversammlung findet am 24.05.2025 um 10:00 statt. Alle Mitglieder und Interessierte sind herzlich eingeladen.
Davor und danach gibt es Gelegenheiten zum gemütlichen Beisammensein. → Veranstaltungs-Ankündigung.

Beispiel:HTML-caption-Element.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>
  <table>
    <caption>Verzeichnis der Teilnehmer</caption>
    <thead>
      <tr>
        <th>Nr.</th>
        <th>Name</th>
        <th>Vorname</th>
        <th>Wohnort</th>
      </tr>
    </thead>
    <tfoot>
      <tr>
        <th>Nr.</th>
        <th>Name</th>
        <th>Vorname</th>
        <th>Wohnort</th>
      </tr>
    </tfoot>
    <tbody>
      <tr>
        <th>1</th>  
        <td>Müller</td>  
        <td>Max</td>  
        <td>Minden</td>  
      </tr>
      <tr>
        <th>2</th>  
        <td>Siegert</td>  
        <td>Siegfried</td>  
        <td>Siegen</td>  
      </tr>
    </tbody>
  </table> 
  </body>
</html>