lai32290 / TableHeadFixer

A jQuery plugin for fix HTML table Head, Foot and Columns
105 stars 45 forks source link

Border of fixed column #23

Open danhnguyeen opened 8 years ago

danhnguyeen commented 8 years ago

Hello guy! Thank you for your plugin, it's very nice. But can you help me how to set the border for fixed column? my table has border. but when i scroll, the border of all the fixed columns is not appear. Sorry about my english

lai32290 commented 8 years ago

Maybe you need set your table border-collapse: collapse with css. Ex:

.fixed-table {
      border-collapse: collapse;
}
danhnguyeen commented 8 years ago

thank you for your answer. but that's not a solution. i mean the problem is like this:

there is no border in product name and product code columns

danhnguyeen commented 8 years ago

ah border-collapse: separate is ok. not border-collapse: collapse; thank you 👍

andyTsai2321 commented 6 years ago

i use box-shadow to simulation border. i think the effect is better than border-collapse: separate.