网站布局随浏览器窗口大小调整而变化

发布于 2024-12-11 02:21:00 字数 87 浏览 0 评论 0原文

对于我正在制作的网站,我使用了 div 的百分比,因此当我调整浏览器窗口大小时,网站布局会变得混乱。我应该如何继续使用百分比并使布局在浏览器调整大小时保持原样?

For a website I'm making, I'm using percentages for the divs and so when I resize the browser window, the website layout gets messed up. How should I keep using percentages and make the layout stay the way it is upon browser resizing?

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

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

发布评论

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

评论(2

长安忆 2024-12-18 02:21:00

当您以 % 为单位设置宽度时,请尝试以 px 为单位设置 min-width 和 max-width

检查此

when you set width in %, try setting min-width and max-width in px

Check this

权谋诡计 2024-12-18 02:21:00

您可以使用 min-width 属性来防止布局缩小到超过特定大小。

div { min-width: 500px; }

浏览器支持 当为输入元素指定 min-width 时,IE7 的行为不正确。尽管我怀疑这对您的网站布局是否起作用。

You can use the min-width attribute to prevent your layout from shrinking beyond a certain size.

div { min-width: 500px; }

Browser support IE7 behaves incorrectly when min-width is specified for input elements. Although I doubt that comes into play for your site layout.

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