lai32290 / TableHeadFixer

A jQuery plugin for fix HTML table Head, Foot and Columns

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table borders being ignored

robinpoort opened this issue · comments

Both bottom and top borders are being ignored on sticky headers and footers.

See: http://www.jqueryscript.net/demo/jQuery-Plugin-For-Fixed-Table-Header-Footer-Columns-TableHeadFixer/examples/fixHeader.html

It would be nice if border styling would be respected once you've scrolled.

table-headers-border

Thank you very much! I'll fix this problem as soon as possible

I checked this problem is because the style of table, is set border-collapse: collapse, if you set it in border-collapse: separate, will not occur this problem

This plugin will alter minimum css set by developer, only property necessary for achieve cell fixer effect

The comments here say border-collapse, but the README.md says table-collapse.

I think table-collapse is incorrect as it is not a css property.

Should indeed be border-collapse: separate and confirmed that it fixes the problem.