Ich habe ein Bubble-Chat-Ding von http://www.ilikepixels.co.uk/drop/bubbler/ generiert.
Auf meiner Seite habe ich eine Nummer eingefügt
.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;
}
Ich möchte, dass sich die background-color
Blase entsprechend der Anzahl in der Blase ändertrgb
Also, wenn mein Div ist
<div class="bubble" style="background-color: rgb(100,255,255);"> 100 </div>
Ich möchte, dass die Farbe ist rgb(100,255,255)
Die Sache ist, dass dies das Dreieck nicht beeinflusst.
Wie schreibe ich das Inline-CSS, damit es Folgendes enthält: Vorher und: Nachher?