i want remove scrollbars on sidebar, can have @ bootply:
http://www.bootply.com/dbyyvruppj
i have tried stuff
#sidebar{ width: 200px; border: 1px solid #000; height: 100%; }
but can't working properly
anybody able me out? :)
edit: scroll function should still active
use following code:
html, body { min-height: 100%; height: 100%; } #sidebar{ position: relative; width: 200px; border: 1px solid #000; min-height: 100%; } #scroller { position: absolute; top: 0; left: 0; bottom: 0; right: 0; overflow-y: scroll; }
fiddle http://jsfiddle.net/qcv5q/671/ or http://jsfiddle.net/qcv5q/672/ if don't want have visible scrollbar
Comments
Post a Comment