CSS、HTML:向可滚动元素内部添加空间的最佳方法是什么?
水平和垂直都可以吗?
我正在使用 jquery ui 的可拖动功能,该功能限制在 div 内,并且我需要一个较大的内部区域来使用。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在可滚动元素上使用
padding
,然后在子元素上使用margin
。Use
padding
on the scrollable element and then usemargin
's on the children.填充就是您正在寻找的。这是使用它的小指南。
http://www.w3schools.com/css/css_padding.asp
还有一个“盒子模型”指南,它将在学习边距、边框、填充等如何影响元素时派上用场。它位于上面链接的左侧导航面板上(我无法发布 2 个链接)
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)