关于inline-block,间隙距离去除,以及div自动换行,高度等问题的一个demo

来源:互联网 发布:淘宝老店新开有扶持吗 编辑:程序博客网 时间:2024/04/29 11:46
<style type="text/css">
    div {
        width: 100px;
        height: 100px;
        display: inline-block;
        vertical-align: bottom;
    }
    .div-1 {
        background-color: red;
    }
    .div-2 {
        height: 110px;
        background-color: blue;
    }
    .div-3 {
        background-color: yellow;
    }
    .div-4 {
        background-color: gray;
    }
    .div-5 {
        background-color: #225433;
    }
    .div-6 {
        background-color: #4488FF;
    }
</style>
<body>
<div style="width: 300px;font-size: 0;">
<div class="div-1"></div>
<div class="div-2"></div>
<div class="div-3"></div>
<div class="div-4"></div>
<div class="div-5"></div>
<div class="div-6"></div>
</div>
</body>
0 0
原创粉丝点击