Reputation: 3132
Both horizontally and vertically?
I am using jquery ui's draggable feature constrained within a div, and I need a large internal area to work with.
Upvotes: 0
Views: 410
Reputation: 25455
Use padding
on the scrollable element and then use margin
's on the children.
Upvotes: 4
Reputation: 115
Padding is what you are looking for. Here's a little guide to using it. http://www.w3schools.com/css/css_padding.asp
There is also a guide to the "box model" which will come in handy learning how margins, borders, padding etc. effect a element. It's on the left navigation panel of the link above (I can't post 2 links)
Upvotes: 1