diff --git a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
index 1a4bdfc6c755ade3ce5cac754c5201d7dcd78d66..e086997d09fe013ddc54f8d607478f7c1b09c2a3 100644
--- a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
+++ b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
@@ -547,7 +547,7 @@ class ElementInformationController {
 		// Compile information for title tag:
 		$infoData = array();
 		if (count($rows)) {
-			$infoData[] = '<tr class="t3-row-header">' .
+			$infoDataHeader = '<tr class="t3-row-header">' .
 					'<td>&nbsp;</td>' .
 					'<td>' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:show_item.php.field') . '</td>' .
 					'<td>' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:show_item.php.flexpointer') . '</td>' .
@@ -560,7 +560,7 @@ class ElementInformationController {
 		}
 		foreach ($rows as $row) {
 			$actions = $this->getRecordActions($row['ref_table'], $row['ref_uid']);
-			$infoData[] = '<tr>' .
+			$infoData[] = '<tr class="db_list_normal">' .
 					'<td style="white-space:nowrap;">' . $actions . '</td>' .
 					'<td>' . htmlspecialchars($this->getLabelForTableColumn($table, $row['field'])) . '</td>' .
 					'<td>' . htmlspecialchars($row['flexpointer']) . '</td>' .
@@ -577,8 +577,10 @@ class ElementInformationController {
 		}
 
 		return '<table border="0" cellpadding="0" cellspacing="0" class="typo3-dblist">' .
+				'<thead>' . $infoDataHeader . '</thead>' .
+				'<tbody>' .
 				implode('', $infoData) .
-				'</table>';
+				'</tbody></table>';
 	}
 
 	/**