jquery datatables固定列未在IE中对齐

前端之家收集整理的这篇文章主要介绍了jquery datatables固定列未在IE中对齐前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果您在IE 10中检查固定列在向下滚动时不与主体行对齐,当您从右向下滚动时,固定列不与主体对齐.

我试过玩下面的css,但它不起作用.它可能是我在桌子上的边框和填充物吗?

.DTFC_LeftBodyLiner{
    top: 2px !important;
}

jsfiddle

UPDATE

我有updated它没有scrollx / y和固定列.但是浮动标题仍然没有对齐

使用@Dekel代码更新

https://jsfiddle.net/a1mrp2k8/1/当缩放标题列时删除

解决方法

根据jQuery DataTables的作者,Extension FixedHeader与滚动功能不兼容.

official documentation

Please note that FixedHeader is not currently compatible with tables that have the scrolling features of DataTables enabled (scrollX / scrollY). Please refer to the 07001 for full compatibility details.

原文链接:https://www.f2er.com/jquery/178314.html

猜你在找的jQuery相关文章