如何获得最大可能的客户端宽度

发布于 2024-10-18 06:29:59 字数 127 浏览 1 评论 0原文

网页应该适应用户可以拥有的浏览器窗口的最大可能尺寸。

有没有办法获得浏览器视口的最大可能大小?

我觉得这并不那么简单,因为用户可以在浏览器中显示或隐藏一些工具栏,这会影响视口大小。

这可能吗?

Web page should adapt be adapted to maximal possible size of browser's window, that user can have.

Is there a way to get maximal possible size of browser's viewport ?

I feel, that it's not so simple, as might be, because user can show or hide some toolbars in browser, that will affect the viewport size.

Is this even possible ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

口干舌燥 2024-10-25 06:29:59

function getWidth()

{

var pagewidth=document.body.clientWidth;
// Whatever you want to do with it.

}

灵魂会这样做。

function getWidth()

{

var pagewidth=document.body.clientWidth;
// Whatever you want to do with it.

}

Sould do it.

ζ澈沫 2024-10-25 06:29:59

为什么在 CSS 设计时不使用流体布局呢?阅读相关内容。
使用百分比设置 DOM 元素的尺寸将帮助您实现这一目标。它会根据客户端浏览器的大小自动缩放。

Why don't you use a fluid layout while designing in css. Read about it.
Setting dimensions of DOM elements using percentages will help you achieve this. It will scale automatically according to the client browser size.

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