“So färben Sie SVG -Bild in CSS” Code-Antworten

Ändern Sie die SVG -Farbe im IMG -Tag

<svg>
    <use href="logo.svg" style="--color_fill: #000;"></use>
</svg>
Sparkling Seahorse

So färben Sie SVG -Bild in CSS

/*
	You have to apply a filter, this works for any kink of image
    Play with hue-rotate and saturate to find the color you want
*/
#svg{
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(280deg);
 }
Norman

Ändern Sie die SVG -Farbe im IMG -Tag

.logo {
  background-color: red;
  -webkit-mask: url(logo.svg) no-repeat center;
  mask: url(logo.svg) no-repeat center;
}
Sparkling Seahorse

Ähnliche Antworten wie “So färben Sie SVG -Bild in CSS”

Fragen ähnlich wie “So färben Sie SVG -Bild in CSS”

Weitere verwandte Antworten zu “So färben Sie SVG -Bild in CSS” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen