Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> table { border-collapse: collapse; } table, th, td { border: 1px solid #cccccc; } thead { background-color: #1c87c9; color: #ffffff; } th { height: 50px; text-align: center; } td { padding: 3px 10px; } </style> </head> <body> <h2>Ein Beispiel für die Eigenschaft border-collapse</h2> <p>Hier ist der Wert "collapse" für die Eigenschaft border-collapse eingestellt.</p> <table> <thead> <tr> <th>Überschrift</th> <th>Überschrift</th> <th>Überschrift</th> <th>Überschrift</th> </tr> </thead> <tbody> <tr> <td>Text</td> <td>Text</td> <td>Text</td> <td>Text</td> </tr> <tr> <td>Text</td> <td>Text</td> <td>Text</td> <td>Text</td> </tr> </tbody> </table> </body> </html>