You can combine with the absolute positioning of the tfoot and tbody . I'm not sure how the cross browser works, and you need to know the position. But here is an example:
table { position: relative; } tfoot { position: absolute; top: 25px; } tbody { position: absolute; top: 50px; }
http://jsfiddle.net/YJhk2/
source share