2011-01-03 3 views

답변

1

CSS로 헤드를 고정시킬 수 있습니다. 항상 맨 위에 표시됩니다.

<table> 
<thead style="position:fixed; top:0px; z-index:42; background:#fff;"> 
    <tr> 
    <th>head cell a</th> 
    <th>head cell b</th> 
    </tr> 
</thead> 
<tbody> 
    <tr> 
    <td>1a</td> 
    <td>1b</td> 
    </tr> 
    <tr> 
    <td>2a</td> 
    <td>2b</td> 
    </tr> 
    <!-- ... --> 
</tbody> 
</table> 
+0

iE – kbvishnu

+0

에서 작동하지 않습니다. 나는 이것을 찾았다 : http://stackoverflow.com/questions/684211/html-table-with-fixed-headers-and-a-fixed-column and this http://stackoverflow.com/questions/673153/html-table -with-fixed-headers – Floern

+0

이 솔루션은 파이어 폭스에서만 작동합니다. IE에는 없습니다. – kbvishnu

관련 문제