Thread CSS Scrollable Table mit Fixed Header (7 answers)
Opened by esskar at 2006-11-09 09:33

GwenDragon
 2006-11-09 15:37
#24930 #24930
User since
2005-01-17
14757 Artikel
Admin1
[Homepage]
user image
Der IE 7 hat einen Bug und unterstützt kein overflow in tbody.

Ansonsten lässt sich das notwendige per Conditional Comments ins HTML einfügen.

So gehts einigermaßen:
Würgaround-Code in Head hinzufügen
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
<!--[if IE 7]>
<style>
div.tableContainer {
overflow-y:scroll !important;
overflow:auto;
}
tbody.scrollContent tr {
height: 100%;
}
</style>
<![endif]-->
\n\n

<!--EDIT|GwenDragon|1163080414-->

View full thread CSS Scrollable Table mit Fixed Header