让背景 div 一直延伸到页面底部
有没有一个CSS技巧可以让div向下延伸到屏幕底部而不可见 里面的内容。
或者我必须求助于javascript?
谢谢,理查德
Is there a css trick to let a div stretch down to the bottom of the screen without visible
content in it.
Or do I have to resort to javascript?
Thanks, Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会尝试使用
min-height:100%;
。不过,并非所有浏览器都支持该属性:( 另外,您必须将其应用于 div 的所有父元素。
I'd try using
min-height:100%;
.The property is not supported in all browsers, though :( Also, you have to apply this to all parent elements of the div.
如果你需要所有浏览器的支持,你就不能用普通的 css 来做到这一点。但你可以做一些技巧来显示你的容器是 100% 的高度。例如背景图像(根据您的网站模板)。
或者你可以做一些 javascript 编码来使你的 div 100% 高度。
u can't do that with plain css if u need all browsers support. but u can do some tricks to show that your container is 100% height. for example with background images (according to your website template).
or u can do some javascript coding to make your div 100% height.