有没有办法在CSS3中做一个倒圆角,大致类似于下面(粗略)图中的左下角?
/-------\
| |
| |
| |
| ______/
|/ <---The left side is flush (straight), the slant should be rounded
也许border-radius可以与this technique结合使用?
编辑:我不是在寻找一个讲话泡泡,而只是一种弯曲左下角点右侧的方法。
答案 0 :(得分:16)
嗯,这是纯粹的疯狂,但肯定有办法实现这个:-)不是跨浏览器,但让我们看看:
我们的加价:
<div id="bubble">
<p>This is madness!</p>
</div>
我们的CSS:
#bubble {
width:200px;
height:100px;
border:1px solid #000;
-webkit-border-radius:20px;
-moz-border-radius:20px;
border-radius:20px;
}
#bubble p {
margin: 1em;
font-family:Comic Sans MS;/* well, madness it is! */
}
#bubble:before {
content:'';
border:20px solid;
border-color:#fff transparent transparent;
position:absolute;
top:110px;
left:25px;
z-index:2;
}
#bubble:after {
content:'';
border:20px solid;
border-color:#000 transparent transparent;
position:absolute;
top:111px;
left:25px;
z-index:1;
}
结果: http://jsfiddle.net/MrLWY/
我只在Firefox 3.6.3中对此进行了测试,但想法很明确: - )
以下是两个:
#bubble {
width:200px;
height:100px;
border:1px solid #000;
position:relative;
-webkit-border-radius:20px 20px 20px 0;
-moz-border-radius:20px 20px 20px 0;
border-radius:20px 20px 20px 0;
}
#bubble p {
margin: 1em;
font-family:Comic Sans MS;
}
#bubble:before {
content:'';
width:20px;
height:20px;
background:#fff;
border-left:1px solid #000;
position:absolute;
top:100px;
left:-1px;
}
#bubble:after {
content:'';
-webkit-border-radius:20px 0 0 0;
-moz-border-radius:20px 0 0 0;
border-radius:20px 0 0 0;
border:solid #000;
border-width:1px 0 0 1px;
width:20px;
height:19px;
position:absolute;
top:100px;
left:0;
}
也许这可以通过多种方式得到加强:
答案 1 :(得分:6)
我不能发表评论,但所以这是一个新的答案(关于Gryzzlys的回答):
Gryzzlys的第一个例子没有处理不同的背景颜色(背景和气泡)。
但第二个确实如此。以下是应用背景颜色的示例:
(我还添加了border-radius属性,以便为Firefox以外的其他浏览器渲染边框)。
答案 2 :(得分:3)
这实现了FF的效果。对其他浏览器使用适当的border-radius
变体。
基本上你使用3 div
系统,一个与背景颜色相同的系统。
仅适用于平面颜色的背景。
<div class="top">some text here</div>
<div class="bottom"><div class="bottom2"></div></div>
CSS:
body
{
background-color:red;
}
.top
{
display: block;
width: 200px;
height: 50px;
background-color:white;
padding:5px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
-moz-border-radius-bottomright:10px;
}
.bottom
{
display: block;
width: 20px;
height: 20px;
background-color: white;
}
.bottom2
{
display: block;
width: 20px;
height: 20px;
background-color: red;
-moz-border-radius-topleft:20px;
}
答案 3 :(得分:0)
如果你想要实现那种外观(一个语音气球),最好只使用一个图像:)
答案 4 :(得分:0)
有些方法可以通过使用CSS来解决这个问题。我决定使用一种技术来制作标签 - 但可以很容易地适应语音泡泡。
我在这里介绍了如何制作Inverse Border Radius in CSS (here)的基本示例。这使用了一个大小为Border的技巧来使用内部,你可能需要做一些定位才能使它正常工作,但是你可以看到它的可能性。