/* Normal Bubble */
.bubble {
width: auto;
font-size: 0.75em;
margin-bottom: 24px;
}
.bubble blockquote {
margin: 0px;
padding: 0px;
border: 1px solid #c9c2c1;
background-color: #000;
}
.bubble blockquote p {
margin: 10px;
padding: 0px;
font-size: 21px;
}
.bubble cite {
position: relative;
margin: 0px;
padding: 7px 0px 0px 15px;
top: 6px;
background: transparent url(b/tip.gif) no-repeat 20px 0;
font-style: normal;
}
我有这个供我评论..看起来像“讲话泡泡”。
我从一开始就不希望它很大,我想在文本之后自定义它。我的意思是如果你写“你好”,那么它应该在它周围,距离气泡可能有 1-2 像素的边距,所以如果你写“你好”我的名字是,我喜欢做饭!” 那么它应该更大..它现在是这样的:
<div class="bubble">
<blockquote>
<p>the comment text is here</p>
</blockquote>
<cite>Written by me</cite>
</div>