Is it possible to use a css custom property within an HTML tag for an inline svg element?
Say I have an inline svg element:
<svg style="width:var(--image-width);" />
Now, this statement isn't valid, but is there a way to use --image-width in the HTML file instead of the css file?
It should work if you import a css file that defines the property
--image-width
.