Модификация CSS для упорядочивания указателя

У меня есть всплывающая подсказка css на моем html. Я получаю стрелку (пузырек: после) внизу моего пузыря. Как я могу переместить вправо центр моего пузыря?

Вот мой div

 <div class="bubble">Hi there. I like turtles.</div>
<p style="margin-left: 1em;">Mikey sez</p>

Пузырь, который отображается в моем div, взят из CSS ниже

 <style type="text/css">
 .bubble {
 position: relative;
 background-color:#eee;
 margin: 0;
 padding:10px;
 text-align:center;
 width:180px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-webkit-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
box-shadow: 0px 0 3px rgba(0,0,0,0.25); 
}
.bubble:after {    //This after mark has to be arranged so to point to the right of bubble
position: absolute;  //The position should be at the center
display: block;
content: "";  
border-color: #eee transparent transparent transparent;
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
bottom:-19px;
left:1em;
 }

Bubble with bubble after

Переставить, как показано ниже на изображении

To be rearranged like this

0
задан Some Java Guy 24 February 2012 в 09:41
поделиться