仅在Firefox中,如果我尝试给svg路径一个模式引用,如:
路径{
fill:url(#ref);
}
在外部样式表中,它呈现不可见.如果我内联,或在页面上的标签中,它可以工作.
这是我的小提琴,这是我的代码转储因为SO不会让我发布只是小提琴.
http://jsfiddle.net/v5VDp/1/
<pattern id="texture_base" x="0" y="0" patternUnits="userSpaceOnUse" height="122" width="213"> <image x="0" y="0" width="213" height="122" xlink:href=""/> </pattern> <pattern id="texture1" x="0" y="0" patternUnits="userSpaceOnUse" height="122" width="213"> <rect fill='url(#color1)' stroke="none" x="0" y="0" width="213" height="122"/> <rect fill='url(#texture_base)' x="0" y="0" width="213" height="122"/ /> </pattern> </defs> </svg>
.slice:nth-child(6n 2)path {
fill:url(#texture1);
}
https://dl.dropbox.com/s/wkzaoiwnw6ghsmd/simple_svg_test.css
解决方法
#texture1是<此文件的网址>的缩写#texturl.因此,在外部样式表中,#texture1将指向样式表本身中的某些内容,因为该元素位于svg文件中,因此无法找到该内容.
Webkit总是出错,导致很多混乱.您应该发现Opera与IE一样匹配Firefox行为.
如果你想在样式表中这样做,你必须使用绝对URL,例如URL(http://jsfiddle.net/v5VDp/1/#texture1)
这一点由CSS specification涵盖.您可以随时联系CSS working group and suggest that they do something about it.