jquery default slider's handle is "over" the track, in our experience, the handle box should be "fit" the track, I don't konw why jquery team want's to make it like this, and it's seem's no option to define it, but I really want to know how to do it.
Actually it takes a bit more than that. A slider handle by default is aligned with its center at the value. So at the min the left/bottom half of the handle is off the left/bottom of the track and at the max the right/top is off the right/top of the track. In order to keep it in the track (left/bottom-aligned at min, right/top-aligned at max) you have to dynamically adjust the negative margin from 0 to {width of handle} whereas the default is {width of handle / 2}. Demo here:
You can tweak it a bit more, but I'm pretty certain that's the right route. If the vertical center point is out, you just need to tweak the "top:" css property.