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?