gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 13:25:39 24 4
gpt4 key购买 nike

我正在使用剪辑路径和边框半径创建头像 basemap ,以显示背景颜色。 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/

最佳答案

如果您使用以下 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

关于css 'clip-path' 在 Firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23740001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com