如何避免 CSS 浮动换行
我有一个页面,有 2 列并排(均由 float: left 定义)。
我的问题是,当我将浏览器缩小时,右列将下降到左列下方。
我怎样才能避免这种情况?并且无论屏幕尺寸如何,仍然使它们并排。
谢谢
I have a page with 2 columns side by side (defined both by float: left).
My problem is, when I scale the browser to be smaller, the right column will be dropped below the left column.
how can I avoid this? and still to make them be side-by-side no matter the screen size.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,如果您希望它们随浏览器调整大小,则需要以百分比定义宽度。
所以:
有些人会在这里使用 50%,我倾向于不这样做
Alternatively if you want them to resize with the browser will need to define the width in percentages.
So:
Some people would use 50% here, I tend not to
将父容器设置为固定宽度或将溢出设置为自动。例如,如果您的两列宽 200px
Make the parent container a fixed width or set the overflow to auto. For example if your two columns are 200px wide