在我的网站上,我想制作一个语音气泡,并找到了一个很棒的教程。但我想做一些改变,但我不知道怎么做。基本上我想水平翻转小三角形,所以它在右侧而不是左侧垂直。这是CSS:
.bubble
{
margin-top: 100px;
position: relative;
width: 200px;
height: 100px;
text-align: center;
line-height: 100px;
background-color: #fff;
border: 8px solid #666;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-webkit-box-shadow: 2px 2px 4px #888;
-moz-box-shadow: 2px 2px 4px #888;
box-shadow: 2px 2px 4px #888;
}
.bubble:after
{
content: ' ';
position: absolute;
width: 0;
height: 0;
left: 38px;
top: 100px;
border: 15px solid;
border-color: #fff transparent transparent #fff;
}