Embedded background svg doesn't display on Firefox if it has a “fill” attribute

后端 未结 1 787
南笙
南笙 2021-01-23 02:30

I\'m trying to use .svg embedded in .css as the background of a link. Here is the css rule:

background-image: url(\'data:image/svg+xml;utf8,

        
相关标签:
1条回答
  • 2021-01-23 02:56

    You should escape "#" character to "%23" because "#" is hash character in URL string.

    http://jsfiddle.net/dmen16me/

    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10px" height="7px"><g><g><polygon points="8.433,-0.06 4.985,3.325 1.539,-0.06 -0.066,1.546 4.985,6.566 10.037,1.546" fill="%2361B23B"/></g></g></svg>');
    

    But I think using base64 is better too.

    0 讨论(0)
提交回复
热议问题