如何使我的色谱柱均匀平衡?

时间:2018-09-20 20:50:26

标签: html css css-multicolumn-layout

各列似乎无法正确平衡(每列的行数不是</p>的列数)。

尝试过填充列:没有喜悦的平衡。

从图像中可以看到。右边有1个段落,左边有3个段落。

enter image description here

.col {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    text-align: left;
    margin: 12px 0 18px;
    display: inline-block;
}
<div class="col">
    <p>Our vision is simple. To capture your story in the most beautifully stunning way with our imaginative and contemporary style...</p>
    <p>After photographing hundreds of weddings, we have concluded that there are 2 main types of photographers, the SNAP photographer and the STANDARD photographer.</p>
    <p>The standard photographers primary role is to capture the finest of details and moments telling the unique story of your wedding day. The snap photographer, however, is responsible for the 'hang on the wall' family and friends formal group photos.</p>
    <p>We offer Hong Kong Wedding Day Photography packages that cover both standard and snap photographers. This way you can relax and enjoy your wedding, knowing that we will capture every single moment of your special day.</p>
</div>

1 个答案:

答案 0 :(得分:1)

这是基于ercan peker的答案。

    .col {
        -webkit-column-count: 2;
        -moz-column-count:    2;
        column-count:         2;
        -webkit-column-gap:   9px;
        -moz-column-gap:      9px;
        column-gap:           9px;
    }
<div class="col">
    Our vision is simple. To capture your story in the most beautifully stunning way with our imaginative and contemporary style...
 <br><br>
    After photographing hundreds of weddings, we have concluded that there are 2 main types of photographers, the SNAP photographer and the STANDARD photographer.
 <br><br>
    The standard photographers primary role is to capture the finest of details and moments telling the unique story of your wedding day. The snap photographer, however, is responsible for the 'hang on the wall' family and friends formal group photos.
 <br><br>
    We offer Hong Kong Wedding Day Photography packages that cover both standard and snap photographers. This way you can relax and enjoy your wedding, knowing that we will capture every single moment of your special day.
</div>

我已经编辑了上面的答案并提出了答案。它将行均匀分布在每一列上。