css' clip-path'在Firefox中不起作用

时间:2014-05-19 14:10:19

标签: css firefox

我正在创建使用剪辑路径和边框半径的头像参考底图来显示背景颜色。即使使用供应商前缀,Firefox也不会呈现剪切路径。

任何帮助表示感谢。

html:

<div class="avatar-wrapper">
<div class="circle-underlay">&nbsp;</div>
<img class="avatar-img" src="http://www.gravatar.com/avatar/6caf8757aa60bda77594e8d8fdd819d9?s=38" width="38" height="38" />
</div>

CSS:

.avatar-wrapper{
position: relative;
width: 48px;
height: 48px;
}

.circle-underlay {
border-radius: 50%;
width: 48px;
height: 48px; 
background:#cc3300;
position: absolute;
top: 0px;
left: 0px;
}

.avatar-img{
position: absolute;
top:5px;
left: 5px;
-moz-clip-path: circle(50%,50%,50%);
-webkit-clip-path: circle(50%,50%,50%);
clip-path: circle(50%,50%,50%);
}

http://jsfiddle.net/LyDHP/

2 个答案:

答案 0 :(得分:1)

如果您使用以下HTML:

<div class="avatar-wrapper">
    <img class="avatar-img" src="http://www.gravatar.com/avatar/6caf8757aa60bda77594e8d8fdd819d9?s=38" width="38" height="38" />
</div>

和css:

.avatar-wrapper{
    position: relative;
    width: 38px;
    height: 38px;
    border:5px solid #cc3300;
    border-radius:50%;
    overflow:hidden;
}

You can achieve the required result

答案 1 :(得分:0)

好消息,没有svg的“clip-path”的基本支持将被添加到Firefox 54中,它现在仍然处于测试阶段,但公众发布计划于6月14日发布。

https://developer.mozilla.org/en-US/Firefox/Releases/54

  
      
  • clip-path现在支持基本形状(bug 1247229)。
  •