CSS的动态高度

时间:2013-10-01 22:00:24

标签: javascript html css

我正在做评论页面。我有一个json的所有评论,这个评论在一个泡沫演讲中。问题是评论可以改变它们的大小,我想根据评论的大小进行泡沫演讲。 一个例子

enter image description here

正如您所看到的,泡泡语音的顶部未对齐。以下是演示:http://jsbin.com/uLuvaWU/1

我决定将变化变为动态,因为我在一些泡泡演讲中有很多空白区域。示例:http://jsbin.com/OrIWAr

不确定我必须从我的CSS中更改

.bubble-panel {
    display: inline-block;
    border: 1px dotted #CCCCCC;
    height: 350px;
    position: relative;
    margin: 20px;
}


.bubble 
{
position: relative;
width: 350px;
height: auto;
padding: 4px;
background: #FFFFFF;
-webkit-border-radius: 31px;
-moz-border-radius: 31px;
border-radius: 31px;
border: #46A5E4 solid 9px;
display:inline-block;
margin-bottom: 0px;
margin-right: 50px;
vertical-align: middle; /* ADD THIS LINE */
}

.bubble p
{
    margin: 10px;
}

.bubble:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 31px 14px 0;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 1;
margin-left: -14px;
bottom: -31px;
left: 20%;
}

.bubble:before 
{
content: '';
position: absolute;
border-style: solid;
border-width: 39px 22px 0;
border-color: #46A5E4 transparent;
display: block;
width: 0;
z-index: 0;
margin-left: -22px;
bottom: -48px;
left: 20%;
}
.caption {
    //border: 1px solid red;
    width: 20em;
    font-size: 14px;
    line-height: 1.5;
    position: absolute;
    bottom: auto;
    right: 0px;
}
.caption h1, .caption h2, .caption h3 {
    font-size: 1.00em;
    text-align: left;
    margin: 0;

}

1 个答案:

答案 0 :(得分:2)

我已经改变了CSS上的类.bubble-panel。 (http://jsbin.com/uLuvaWU/2

 .bubble-panel {
    display: inline-block;
    border: 1px dotted #CCC;
    height: 350px;
    position: relative;
    margin: 20px;
    top: 0;
    float: left;
  }

在Chrome,Firefox和Safari上进行测试,现在已经对齐了泡泡语音。