在我的website我想製作一個語音氣泡,並找到一個很好的教程。但我想做一些改變,但我不知道如何去做。 基本上我想水平翻轉這個小三角,所以它的垂直在右側而不是左側。 這裏是CSS:用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;
}
看到我的答案,讓我知道,如果我落後了一些,其中所引用。因爲我覺得我有點混淆理解你的問題。 – w3uiguru
有關更多形狀,請檢查此 http://css-tricks.com/examples/ShapesOfCSS/ –
可能的重複[Speech with bubble](http://stackoverflow.com/questions/30299093/speech-bubble-with - ) – jbutler483