<!– StyleSheets * * –> <html> <style type="text/css"> /* TABLE - responsive Table nur mit CSS ================================================================================================================== ==================================================================================================================*/ #table-parent { width: 100%; display: table; } #table-title{ display: table-caption; text-align: center; font-size: 30px; font-weight: bold; } #table-header{ display: table-header-group; background-color: gray; font-weight: bold; font-size: 25px; } .table-header-cell{ display: table-cell; padding: 10px; text-align: justify; border-bottom: 1px solid black; } #table-body{ display: table-row-group; } .table-row{ display: table-row; } .table-body-cell{ display: table-cell; } #table-footer { display: table-footer-group; background-color: gray; font-weight: bold; font-size: 25px; color: rgba(255, 255, 255, 0.45); } .table-footer-cell{ display: table-cell; padding: 10px; text-align: justify; border-bottom: 1px solid black; } </style> </html> <!– * *** –>