TableHeadFixer
TableHeadFixer copied to clipboard
Border of fixed column
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
Maybe you need set your table border-collapse: collapse
with css.
Ex:
.fixed-table {
border-collapse: collapse;
}
thank you for your answer. but that's not a solution. i mean the problem is like this:
- the first, it like this http://i1112.photobucket.com/albums/k490/trangchuvn_2000/1_1.png
- when i scroll to right, it like this http://i1112.photobucket.com/albums/k490/trangchuvn_2000/Client%20Orders%20%202.png
there is no border in product name and product code columns
ah border-collapse: separate is ok. not border-collapse: collapse; thank you 👍
i use box-shadow to simulation border. i think the effect is better than border-collapse: separate.