Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> caption { background: #1c87c9; color: #fff; } .top caption { caption-side: top; } table, th, td { border: 1px solid #1c87c9; padding: 3px; } td { background-color: #ccc; color: #666; } </style> </head> <body> <h2>Ein Beispiel für die Eigenschaft caption-side</h2> <p>Hier ist caption-side auf "top" eingestellt:</p> <table class="top"> <caption>Irgendeine Überschrift</caption> <tr> <td>Text</td> <td>Text</td> </tr> </table> </body> </html>