css3实现瀑布流布局+缺点用户体验差,但是性能高于js,jq,使用column属性

#main{
    -webkit-column-width: 202px;
    -moz-column-width:202px;
}

.box{
    padding: 10px 0 0 15px;
}
.pic{
    padding:10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0 0 5px #cccccc;
    width: 165px;
}
.pic img{
    display: block;
    width: 165px;
    height: auto;
}

你可能感兴趣的:(css)