0

I have a div of fixed width and height containing some text.

The div is styled to use css3 column as below:

-moz-column-count:2; /* Firefox */
-webkit-column-count:2; /* Safari and Chrome */
column-count:2;

The text flows ok (moz. iexplore, chrome), but shows no scroll bar. (css: overflow:auto;)

If I force the scroll with overflow:scroll; the div shows both horizontal and vertical scroll bar but no "handle" to scroll.

Any idea how to work around this problem?

TylerH
  • 20,799
  • 66
  • 75
  • 101

1 Answers1

0

did you try only seeting the scroll to x or y?

overflow-x: scroll;
overflow-y: scroll;

Hope this helps.

taxicala
  • 21,408
  • 7
  • 37
  • 66
  • Thank you for your answer !actually I also found another question who answered it http://stackoverflow.com/questions/10865717/multi-column-vertical-scrolling-in-css-javascript – user3216099 Jan 21 '14 at 09:51