我正在尝试按以下方式创建它,但无法完成它。
我只能在左侧创建一个圆 Angular ,而不能在右侧创建一个圆 Angular 。
html - CSS三 Angular 形的一面带有圆形的左侧?-LMLPHP
(来源:kerrydeaf.com)

#talkbubble
 {
width: 100px;
height: 35px;
background: #FFCC05;
position: relative;
-moz-border-radius:8px 0 0 8px;
-webkit-border-radius:8px 0 0 8px;
border-radius:8px 0 0 8px;
margin-right:50px;
 }
或者这是
http://jsfiddle.net/alma/USezL/23/

最佳答案

我认为这就是您正在寻找的http://css-tricks.com/snippets/css/css-triangle/

http://jsfiddle.net/zQKhb/

#talkbubble
{
    width: 100px;
    height: 36px;
    background: #FFCC05;
    position: relative;
    -moz-border-radius:8px 0 0 8px;
    -webkit-border-radius:8px 0 0 8px;
    border-radius:8px 0 0 8px;
    margin-right:50px;

}

#talkbubble:before
{
    content:"";
    display:block;
    position: absolute;
    right: -36px;
    top:0;
    width: 0;
    height: 0;
    border: 18px solid transparent;

    border-color: transparent transparent #FFCC05 #FFCC05;
}
​

10-05 21:41