我从中产生了一个泡泡聊天 http://www.ilikepixels.co.uk/drop/bubbler/
我在页面中放了一个数字
.bubble {
position: relative;
width: 20px;
height: 15px;
padding: 0;
background: #FFF;
border: 1px solid #000;
border-radius: 5px;
}
.bubble:after {
content: "";
position: absolute;
top: 4px;
left: -4px;
border-style: solid;
border-width: 3px 4px 3px 0;
border-color: transparent #FFF;
display: block;
width: 0;
z-index: 1;
}
.bubble:before {
content: "";
position: absolute;
top: 4px;
left: -5px;
border-style: solid;
border-width: 3px 4px 3px 0;
border-color: transparent #000;
display: block;
width: 0;
z-index: 0;
}
我想要 background-color
气泡的数量根据通过其中的数量而变化rgb
所以如果我的div是
<div class="bubble" style="background-color: rgb(100,255,255);"> 100 </div>
我想要颜色是 rgb(100,255,255)
问题是这不会影响三角形。
如何编写内联CSS,使其包括:before和:after?