100% 可扩展容器 div,带有外边距
我有一个令人困惑的问题。
我需要一个 100% 宽度、100% 高度的容器,其边距为 20px,可随内容扩展。这有可能吗?我得到的最接近的是这种方法:
#container {
position:absolute;
top:0;
bottom:0px;
left:0;
right:0;
margin:20px;
}
但是它不会随着内容的高度而扩展。
有人知道这是什么神术吗?
i have a mind bobbling question.
I need a 100% width, 100% height container with 20px margin that expands with content. Is this at all possible? The closest i got was with this method:
#container {
position:absolute;
top:0;
bottom:0px;
left:0;
right:0;
margin:20px;
}
but then it wont expand in height with content.
Anybody know the divine technique for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我很确定不可能用单个元素来完成,但如果您不介意有 3 个间隔
div
元素,则此解决方案适用于所有浏览器:这是一个可以使用的小提琴: http://jsfiddle.net/dTyTW/
I'm pretty sure it isn't possible to do with a single element, but if you don't mind having 3 spacer
div
elements, this solution works in all browsers:Here's a fiddle to play with: http://jsfiddle.net/dTyTW/
如果你想用内容扩展div,那么你需要设置position:relative,并且为了坚持到底部,还需要设置padding-bottom。
值
可以根据要求进行调整。
尝试此处
I you want to expand the div with the content , then you need to set position : relative and in order to stick towards the bottom padding-bottom also need to be set.
}
Values can be adjusted as per the requirement.
Try here
删除
边距
并为每个位置指定20px
。同时删除
底部
。添加
padding-bottom:20px;
http://jsfiddle.net/jasongennaro/ w7dQP/3/
编辑
如果您不反对使用一些 jQuery,您也可以这样做,
这可以确保
div
小于浏览器视口,它将扩展以适应它。一旦文本变大或更大,样式就会处理它。
http://jsfiddle.net/jasongennaro/w7dQP/8/
Remove the
margin
and give each position a20px
.Also remove the
bottom
.Add
padding-bottom:20px;
http://jsfiddle.net/jasongennaro/w7dQP/3/
EDIT
If you are not opposed to using some jQuery, you could also do this
This ensures that if the
div
is smaller than the browser viewport, it will expand to fit it.Once the text is as big or bigger, the styles will take care of it.
http://jsfiddle.net/jasongennaro/w7dQP/8/
使用 padding 属性...查找盒子模型。
Use the padding property... look up the box model.