Bootstrap scrollable column with CSS -


i have full height layout , try maintain full height column while allowing scroll content when it's out of bounds.

is possible without using frames, css flex , creating js code calculate this: window.height - ".scrollable".offset.top = ".scrollable".height ?

html, body {     height: 100%;     width: 100%; } .scrollable {     height: 100%;     overflow-y: scroll; } 

http://jsfiddle.net/hpruo87t/


Comments