网站布局随浏览器窗口大小调整而变化
对于我正在制作的网站,我使用了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您以 % 为单位设置宽度时,请尝试以 px 为单位设置 min-width 和 max-width
检查此
when you set width in %, try setting min-width and max-width in px
Check this
您可以使用
min-width
属性来防止布局缩小到超过特定大小。浏览器支持 当为输入元素指定 min-width 时,IE7 的行为不正确。尽管我怀疑这对您的网站布局是否起作用。
You can use the
min-width
attribute to prevent your layout from shrinking beyond a certain size.Browser support IE7 behaves incorrectly when min-width is specified for input elements. Although I doubt that comes into play for your site layout.