这是一个已知的错误,-moz-border-radius对firefox中的图像不起作用。有什么方法可以获得此功能而无需将图像作为背景放在圆角div上?
答案 0 :(得分:1)
在当前的Firefox you can use SVG filters中。像这样有一个SVG文件clip.svg
:
<svg:svg height="0">
<svg:clipPath id="c1" clipPathUnits="objectBoundingBox">
<svg:rect x="0" y="0" rx="0.05" ry="0.05" width="1" height="1"/>
</svg:clipPath>
</svg:svg>
并在CSS中应用它:
.target { clip-path: url(clip.svg#c1); }