水平滚动容器内的浮动元素

发布于 2024-12-03 21:44:48 字数 452 浏览 1 评论 0原文

如何在不为容器设置固定宽度的情况下阻止这些元素随浏览器窗口一起环绕?

<div id="container">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>

<style>

#container {
  height: 300px;
}

#container > div {
  width: 300px;
  height: 300px;
  float: left;
}

</style>

How can I stop these elements from wrapping with the browser window without setting a fixed width for the container?

<div id="container">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>

<style>

#container {
  height: 300px;
}

#container > div {
  width: 300px;
  height: 300px;
  float: left;
}

</style>

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

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

发布评论

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

评论(1

浅唱々樱花落 2024-12-10 21:44:48

如果您希望它水平滚动,则需要指定overflow-x:auto。我会尽快发布一个示例。

If you want it to scroll horizontally, you'll need to specify overflow-x: auto. I'll post an example ASAP.

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