Adding a scroll bar to a checkbox list

html

Solution

If your height is explicit then try to add `overflow:scroll;`

or try like this to add some `height`:-

<DIV style="OVERFLOW-Y:scroll; WIDTH:600px; HEIGHT:500px">
   </DIV>

Problem

I am using this line ``` < div id="innerTOC" style="overflow-y:auto; overflow-x:hidden; width: 100%"> ``` When I replace `'auto'` with `'scroll'` it inserts the scroll bar but is `'greyed out'` and doesn't scroll. Is there something else I need to add? Thanks

Original source

Related problems