多列-首先填充左列

时间:2019-02-16 13:55:13

标签: html css css3 multiple-columns

我有一个多列屏幕,使用CSS显示了一堆div框。我试图找出是否有一种方法可以先填充左列,然后再填充到下一列。

您会看到我将其设置为根据屏幕宽度显示1、2或3列,因此我从不希望使用水平滚动条。如果显示屏较小,则仅显示一两列,并且垂直滚动条会正确显示。如果您将屏幕最大化,则会显示3列,但是CSS会将“框”扩展到各列中,而不是填充第一列。

希望这是有道理的。任何帮助将不胜感激!

<style>
    .Comment {
        width: 320px;
        height: calc(100vh - 40px);
        background-color: burlywood;
    }

    .CommentBodySurround {
        height: calc(100% - 40px);
        overflow: auto;
    }

    .CommentBody {
    }

    @media screen and (min-width:700px) {
        .Comment {
            width: 650px;
        }

        .CommentBodySurround {
            height: calc(100% - 40px);
        }

        .CommentBody {
            column-count: 2;
            width: 630px;
        }
    }

    @media screen and (min-width:1020px) {
        .Comment {
            width: 960px;
        }

        .CommentBodySurround {
            height: calc(100% - 40px);
        }

        .CommentBody {
            column-count: 3;
            width: 940px;
        }
    }

    .box {
        width: 290px;
        margin: 3px;
        border: 3px solid #345787;
        border-radius: 12px;
        display: inline-flex;
        background-color: #F1F1F2;
        height: 100px;
    }
</style>
<div class="Comment">
    <div style="height:30px; background-color:aquamarine">this is the top</div>
    <div class="CommentBodySurround">
        <div class="CommentBody">
            <div class="box">
                1
            </div>
            <div class="box">
                2
            </div>
            <div class="box">
                3
            </div>
            <div class="box">
                4
            </div>
            <div class="box">
                5
            </div>
            <div class="box">
                6
            </div>
            <div class="box">
                7
            </div>
            <div class="box">
                8
            </div>
            <div class="box">
                9
            </div>
            <div class="box">
                10
            </div>

            

        </div>
    </div>
</div>

How I want it to look

I don't want the horizontal scroll bar if the screen is full, I want to scroll vertically

1 个答案:

答案 0 :(得分:1)

height: 100%column-fill: auto设置为.CommentBody

.CommentBody {
  column-count: 2;
  column-fill: auto;
  width: 630px;
  height: 100%;
}

column-fill: auto使其填充到每一列,然后再传递到下一个https://developer.mozilla.org/en-US/docs/Web/CSS/column-fill

您需要将高度设置为100%,这样它才能知道何时实际完成。