Reputation: 27727
Is it possible to style the tfoot section of a table so it shows between the thead and tbody?
I would like to get a table to look like this:
Upvotes: 2
Views: 4641
Reputation: 724172
Per my comment, you probably don't want to be making a table footer appear as anything other than a table footer.
But assuming you have the properly-ordered markup, this should work in whatever browser supports it:
thead, tfoot {
display: table-header-group;
}
Upvotes: 10