Change color of data url embedded SVG image

前端 未结 3 979
夕颜
夕颜 2020-12-12 02:52

I have an SVG background image embedded in a CSS file as a data url:

.what { background: url(\'data: image/svg+xml; utf8,  ...          


        
3条回答
  •  暖寄归人
    2020-12-12 03:11

    Check out this webpage: https://css-tricks.com/using-svg/ Part way down the page is a header called "Now you can control with CSS!" They appear to be changing the color of the image inline with statements such as

    .kiwi {
        fill: #94d31b; 
    }
    

提交回复
热议问题