码迷,mamicode.com
首页 > Web开发 > 详细

css -- 高度相等的列 -- 3列高度相等

时间:2016-06-14 00:58:55      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

<div class="wrapper">
    <div class="box">
        <h1>wo shi hao ren</h1>
        <p>...</p>
        <div class="bottom"></div>
    </div>

    <div class="box">
        <h1>wo shi hao ren</h1>
        <p>...</p>
        <div class="bottom"></div>
    </div>

    <div class="box">
        <h1>wo shi hao ren</h1>
        <p>...</p>
        <div class="bottom"></div>
    </div>
</div>
.wrapper{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.box{
    width: 250px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 520px;
    margin-bottom: 500px;
    margin-left: 20px;
    float: left;
    display: inline;
    background: url(../images/a.jpg) #ccc top left no-repeat;
}
.bottom{
    position: absolute;
    bottom: 0;
    height: 20px;
    width: 290px;
    background: url(../images/a.jpg) #ccc bottom left no-repeat;
    margin-left: -20px;
}

 

css -- 高度相等的列 -- 3列高度相等

标签:

原文地址:http://www.cnblogs.com/zhanghuiyun/p/5582493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!