一个 div 位于另一个 div 中并溢出
如何将一个 div 放在另一个 div 中?
内部 div 必须通过 overflow:auto;
装入外部。外部 div 必须使用 padding:1px
围绕内部 div 创建一个小框架。
How can you have one div inside another?
The inner div has to fit inside the outer with overflow:auto;
. The outer div has to make a small frame around the inner div with padding:1px
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将高度和宽度属性放在内部 div 上。像这样: http://jsfiddle.net/CbZxC/1/
Try putting the height and width properties on the inner div. Like this: http://jsfiddle.net/CbZxC/1/
如果我正确理解你的问题,你也可以将
overflow:auto;
添加到外部 div,然后内部将保留在里面。 http://jsfiddle.net/zKAnv/If I understand your question correctly, you could also just add
overflow:auto;
to the outer div and then the inner will stay inside. http://jsfiddle.net/zKAnv/您必须
浮动
内部div:并将
overflow:auto;
放入外部div:确定您不希望内部div中有填充?
You have to
float
the inner div:and put
overflow: auto;
into the outer div:Sure you don't want the padding in the inner div?