如何将div的高度设置为与屏幕高度相同
如果屏幕尺寸发生变化,我需要一个可以更改的 div 高度。
我还需要 div 可滚动,因为内容可能很大。
但仅当它大于屏幕尺寸时。
它也应该在 IE6 上工作,
有可能吗?
如果是的话,
请给我完整的 css、html 和 javascript。
I need a div height changable if the screen size changes.
I also need that div is scrollable because the content may be Large.
But only when it is larger than the screen zize.
Also it should Work on IE6
Is there any Possibility for that?
If yes,
Please Give me the Complete css, html and javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置宽度100%;这是作品
set width 100%; It's works
如果 div 是 body 的直接子级,则只需在 div 和 body 上设置 height: 100% 即可。像这样:
就可书写性而言,只需:
对您来说有意义吗?
if the div is a direct child of body than just set height: 100% on both the div and the body. Like this:
As far the scrillability is concerned just go:
Makes sense to you?