“SVG em linha CSS” Respostas de código

Adicione SVG ao HTML

<!-- external svg -->
<img src="mySvgImage.svg" />

<!-- internal svg example -->
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <rect width="100" height="100" x="50" y="50"/>
</svg>
Objectively Hilarious

Usando SVG em HTML

<img src="image.svg" />
Concerned Cassowary

SVG em linha CSS

body { background-image: 
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><linearGradient id='gradient'><stop offset='10%' stop-color='%23F00'/><stop offset='90%' stop-color='%23fcc'/> </linearGradient><rect fill='url(%23gradient)' x='0' y='0' width='100%' height='100%'/></svg>");
      }
Redwan Hussain

Respostas semelhantes a “SVG em linha CSS”

Perguntas semelhantes a “SVG em linha CSS”

Mais respostas relacionadas para “SVG em linha CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código