Beispiel:Border-spacing.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" media="screen" href="./Beispiel:Grundlayout.css" /> <title>Tabellen mit border-spacing</title> <style> table, th, td { border: thin solid gainsboro; }

  1. bsp1 {

border-collapse: separate; border-spacing: 10px; margin-bottom: 2em; /* Abstand zur nächsten Tabelle */ }

  1. bsp2 {

border-collapse: separate; border-spacing: 50px 10px; } </style> </head> <body>

Tabellen mit border-spacing

<tbody> </tbody>
border-spacing:10px;
eins zwei
drei vier
<tbody> </tbody>
border-spacing:50px 10px;
fünf sechs
sieben acht

</body> </html>