I doubt if one can change the internal properties of an SVG when used as a background image.
The internal elements of an SVG are visible only when you put it inside the markup as an <svg> tag; Since the SVG elements are not accessible in the DOM when used as a background, you cannot edit it.
Indeed. You can only changeSVG styling when it's inline (inside the DOM). In all other cases it will be seen as a seperate object.
Erasmo J. Pham
Front-end Developer | Exploring Databases
I doubt if one can change the internal properties of an SVG when used as a background image.
The internal elements of an SVG are visible only when you put it inside the markup as an
<svg>tag; Since the SVG elements are not accessible in the DOM when used as a background, you cannot edit it.