我正在创建一个以小三角形为背景的气泡,但唯一的问题是它还需要圆角。我不完全确定如何做到这一点,但任何黑客或任何东西都会受到赞赏。
这就是我所拥有的
HTML
<div class="image">
<img class="test" src="http://fc00.deviantart.net/fs71/f/2011/322/e/2/e292b11555866aec8666ded2e63ee541-d4gl4vg.png" alt="leopard" />
</div>
CSS
.image {
position:relative;
width:340px;
background:orange;
}
.image:before, .image:after {
border-left: 20px solid white;
content: "";
left: 0;
position: absolute;
width: 0;
}
.image:before {
border-bottom: 5px solid transparent;
height: 34px;
top: 0;
}
.image:after {
top: 39px;
bottom:0;
border-top: 5px solid transparent;
}
.test {
display:block;
width:100%;
}
这是一个小提琴。http://jsfiddle.net/yL7Hg/
编辑:如果有帮助,由于我的设计工作方式,我只需要左上角的半径即可。我可以在.image上使用边框半径来获得右上角。