向两侧浮动div

发布于 2024-12-10 05:28:02 字数 122 浏览 0 评论 0原文

假设我有一堆 div,它们要么有“左”类,要么有“右”类。是否可以使这些 div 浮动在容器的两侧,就像有一列“左”div 和一列“右”div 彼此对齐一样。 div 的顺序是随机的。

我不是在寻找两列布局。 ;)

Let's say I have a bunch of divs which have either "left" class or "right" class. Is it possible to make these divs to float on both sides of container like there was a column of "left" divs and a column of "right" divs aligned one under another. Order of divs is random.

I'm not looking for two-column-layout. ;)

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

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

发布评论

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

评论(1

怪我太投入 2024-12-17 05:28:02

参见: http://jsfiddle.net/thirtydot/qdZWh/

div {
    width: 50px;
    height: 50px;
    outline: 1px dashed #666
}
.left {
    float: left;
    clear: left;
    background: yellow
}
.right {
    float: right;
    clear: right;
    background: #0f0
}
<div class="left"></div>
<div class="right"></div>
<div class="left"></div>
<div class="right"></div>

See : http://jsfiddle.net/thirtydot/qdZWh/

div {
    width: 50px;
    height: 50px;
    outline: 1px dashed #666
}
.left {
    float: left;
    clear: left;
    background: yellow
}
.right {
    float: right;
    clear: right;
    background: #0f0
}
<div class="left"></div>
<div class="right"></div>
<div class="left"></div>
<div class="right"></div>

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