コメントページやってます。私はすべてのコメントを含む json を持っています。このコメントは 1 つのバブル スピーチになります。問題は、コメントのサイズが変化する可能性があることです。コメントのサイズに応じてバブルのスピーチが必要です。例
ご覧のとおり、吹き出しのスピーチの上部が揃っていません。デモは次のとおりです: 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;
}