Can you change the scrollbar width (scrolling div) in IE7

Is there a way to change the entire width of the horizontal scrollbar on the scrollable div (including the nudge arrows and the handle).

EDIT: I only need an IE7 solution - it is to scroll through the DIV on a touch screen terminal

thanks

Matt

+5
source share
3 answers

Actually, I am revising my expression ... in IE7 , you CAN do a little scaling.

<div style="zoom:5;font-size:20%;overflow-x:auto;">
  Hello World!       Hello World!       Hello World!       Hello World!       Hello World!       Hello World!       Hello World!
</div>

zoom IE, 500%, 1/5 ( , )... ( , , .

+2

, IMO JS CSS.

, . → → → → → ( )

0

You might want to collapse your own scrollbar - manipulate the position of the div, which scrolls with Javascript. I saw how this was done with the big up and down arrows on touch apps before. Using this approach, you can style the scroll control, but you prefer to match your design.

Here's a recent example that uses the jQuery slider to control the div.

0
source

All Articles