There is a bug in kendo ui grid rtl css in chrome. If you notice example in Telerik site, you can see this bug: http://demos.telerik.com/kendo-ui/web/grid/rtl.html
When you go to page 6, the header and body, isn't align.

You can same error in horizontal scrolling. For example in ltr direction:
http://jsbin.com/otolop/2/edit
this is OK in all browser. But in rtl direction:
http://jsbin.com/otolop/6/edit
It has error in chrome and has no error in firefox and IE.
How can I fix this error. Thanks alot.
This worked for me:
.k-grid-content {
overflow-y: auto;
}
.k-grid-header-wrap {
width: 102%;
}
.k-grid-footer-wrap {
width: 102%;
}
Apply table-layout fixed
property to table of role="grid"
. This worked for me.
.theme-01 .table-view table {
table-layout: fixed;
}
来源:https://stackoverflow.com/questions/23823963/bug-in-kendo-ui-grid-lrt-css-in-chrome