CSS动态宽度

时间:2014-07-02 18:27:42

标签: html css

所以我有一个"帖子"系统,我希望随着更多帖子的出现,盒子变大。这就是我所看到的

enter image description here

当我添加另一篇文章

时会发生这种情况

enter image description here

我只是希望它随着更多帖子的发布而不断增加高度。这是我目前使用的

<div class="comment">
        <div class="comment_cont">
        <div class="icons">
        <i class="fa fa-heart"></i>
        <i class="fa fa-comment"></i>
        </div>
        <h1 class="message">@alex likes cats</h1>
        <p class="time">4 minutes ago</p>       
        </div>  
            <div class="comment_cont">
        <div class="icons">
        <i class="fa fa-heart"></i>
        <i class="fa fa-comment"></i>
        </div>
        <h1 class="message">@alex likes cats</h1>
        <p class="time">4 minutes ago</p>       
        </div>  

    </div>

我的CSS

*{
    padding: 0;
    margin: 0 auto;
}
html{
    height: 100%;
}
body{
    background: #F6F5F6;
    height: 100%;
}


.follow{
        font-size: 23px;
        font-family: 'Avenir Next';
        font-weight: 500;   
        display: inline-block;  
        margin-right: -62%
}
.likes{
    padding-left: 20px;
}

.message{
    font-family: 'Avenir Next';
    font-weight: 400;
    padding-left: 35px;
    line-height: 70px;
}

.post{
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #ccc;
}
.fa-heart{  
    transition: 0.5s;
    margin-top: 60px;
    color: #000;
    font-size: 24px;
    float: right;
    margin-right: 30px;
    cursor: pointer;
}
.fa-heart:hover{
    transition: 0.5s;   
    margin-top: 60px;
    color: #FF6699;
    font-size: 24px;
    float: right;
    margin-right: 30px;
    cursor: pointer;
}
.fa-comment{    
    transition: 0.5s;
    margin-top: 60px;
    color: #000;
    font-size: 24px;
    float: right;
    margin-right: 18px;
    cursor: pointer;
}
.fa-comment:hover{
    transition: 0.5s;   
    margin-top: 60px;
    color: #FF6699;
    font-size: 24px;
    float: right;
    margin-right: 18px;
    cursor: pointer;
}
.icons{
    float: right;
    margin-right: 0px;
}
.time{
    font-family: 'Avenir Next';
    padding-left: 40px;
    color: #929292;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.comment{
    border-radius: 15px;
    margin-top: 150px;
    width: 750px;
    height: 200px;
    background: #fff;
    border: 1px solid #ccc;
}   

Here's演示

2 个答案:

答案 0 :(得分:1)

只需使用min-height而不是height

.comment{
    border-radius: 15px;
    margin-top: 150px;
    width: 750px;
    min-height: 200px;
    background: #fff;
    border: 1px solid #ccc;
}

http://jsfiddle.net/pFN4X/

答案 1 :(得分:1)

只是对Issam的帖子的补充。你真的不需要指定一个高度。因为您将动态添加评论。所以

.comment{
    border-radius: 15px;
    margin-top: 150px;
    width: 750px;
    background: #fff;
    border: 1px solid #ccc;
}

也可以正常工作