YUI Compressor is removing spaces from filter values

后端 未结 5 2203
独厮守ぢ
独厮守ぢ 2021-02-07 11:18

I have a css containing filter for adding Grayout images in FF like this:-

filter: url(\"data:image/svg+xml;utf8,         


        
5条回答
  •  天命终不由人
    2021-02-07 11:40

    The URL portion of the string (from to ) needs to be URL-encoded. Or you can put ;base64 after ;utf8 and Base64-encode the URL instead.

    But it's incorrect to use spaces in a URL...that's why YUI compressor is messing it up.

提交回复
热议问题