如何将div的高度设置为与屏幕高度相同

发布于 2024-11-24 04:19:09 字数 170 浏览 0 评论 0原文

如果屏幕尺寸发生变化,我需要一个可以更改的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秉烛思 2024-12-01 04:19:09

设置宽度100%;这是作品

body {
width:100%;
height:100%;
}

#wrapper {
width:100%;
background:#ccc;
}

set width 100%; It's works

body {
width:100%;
height:100%;
}

#wrapper {
width:100%;
background:#ccc;
}
生死何惧 2024-12-01 04:19:09

如果 div 是 body 的直接子级,则只需在 div 和 body 上设置 height: 100% 即可。像这样:

body, #your-div-id {
   height: 100%;
}

就可书写性而言,只需:

#your-div-id {
   overflow: auto;
}

对您来说有意义吗?

if the div is a direct child of body than just set height: 100% on both the div and the body. Like this:

body, #your-div-id {
   height: 100%;
}

As far the scrillability is concerned just go:

#your-div-id {
   overflow: auto;
}

Makes sense to you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文