Closed Diokuz closed 8 years ago
The problem was in css
::-webkit-scrollbar {
width: 0;
}
As a result, in horizontal mode native scrollbar was invisible (width 0), but still had a height.
Good CSS:
::-webkit-scrollbar {
width: 0;
height: 0;
}
Clipper and scroller has non-equal heights, but in webkit they should have equal heights, because of zero-sized native scrollbar.