响应Div Float和高度调整

时间:2013-10-23 09:02:31

标签: jquery html css css3 responsive-design

以下是我的小提琴,其中我试图将div浮动到左边并将divs WRT安排到高度,例如如果连续的3个div不是相等的高度,那么接下来的三个div应根据前3个div的高度进行相应的调整,并且在压缩时可以轻松地将div转到下一行。

我想要将我的div安排为 http://www.kaspervanvliet.nl/index.html

而不是图片

另一个例子 http://januarycreative.com/portfolio/

我希望以下可以解释一切:

enter image description here

JSFIDDLE: http://jsfiddle.net/StfUk/(增加diplay窗口的宽度)

/* *********************************************************************************************************************
 * Main container for all
 */
.onepcssgrid-1000, .onepcssgrid-1200 {
    margin: 0 auto;
    padding: 0 0 0 1%; /* THAT'S THE NAME ;) */
}

.onepcssgrid-1200 {
    max-width: 100%;
}

.onepcssgrid-1000 {
    max-width: 1020px;
}

.onerow {
    clear: both;
    padding: 0 10px;
}

/* *********************************************************************************************************************
 * Common columns definitions
 */
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
    float: left;
    margin: 0 3% 0 0;
}

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
    margin: 0;
}

.col1 { width: 5.5%; }
.col2 { width: 14%; }
.col3 { width: 22.5%; }
.col4 { width: 31%; }
.col5 { width: 39.5%; }
.col6 { width: 48%; }
.col7 { width: 56.5%; }
.col8 { width: 65%; }
.col9 { width: 73.5%; }
.col10 { width: 82%; }
.col11 { width: 90.5%; }
.col12 { width: 99%; margin: 0; }

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
    width: 100%;
    height: auto;
    display: block;
}

/* *********************************************************************************************************************
 * Disable padding left/right 10px if I'm 1024 or gibber - correct percentage math
 */
@media all and (min-width: 1024px) {
    .onepcssgrid-1000 {
        max-width: 1000px;
    }

    .onepcssgrid-1000 .onerow {
        padding: 0;
    }
}

/* *********************************************************************************************************************
 * Small devices
 */
@media all and (max-width: 768px) {
    .onerow {
    }

    .col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11 {
        float: none;
        width: 99%;
    }
}

1 个答案:

答案 0 :(得分:0)

好吧,我看了一下这个例子,它很安静。有三个div作为容器,图像(在你的情况下是div)嵌套在这些div中只需要定义顶部和底部边距:

的CSS:

.parent{
padding:10px;
float:left;
width:300px;
}

.item{
margin:20px 0px;
display:block;
width:300px;
}

HTML:

<div style="text-align:center">
    <div style="display:inline-block">
        <div class="parent">
            <div class="item"></div>
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="parent">
            <div class="item"></div>
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="parent">
            <div class="item"></div>
            <div class="item"></div>
            <div class="item"></div>
        </div>
    </div>
</div>

的div是您想要的div。