ducksboard / gridster.js

gridster.js is a jQuery plugin that makes building intuitive draggable layouts from elements spanning multiple columns
http://gridster.net/
MIT License
6.04k stars 1.2k forks source link

Vertical scroll bar #416

Closed StephenLegros closed 10 years ago

StephenLegros commented 10 years ago

How to add content in a widget with a vertical scroll bar? If the text or content is too large, the content is embedded on other widgets below. Thank you very much for your response.

cychoi99 commented 10 years ago

Have you tried to use "overflow-y: auto; overflow-x: hidden;"?

StephenLegros commented 10 years ago

Yes, but it work fine with subtracting the header of 45px :

height: 100%;
overflow: auto;
height: -moz-calc(100% - 45px);
height: -webkit-calc(100% - 45px);
height: -o-calc(100% - 45px);
height: calc(100% - 45px);