Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Style svg? Re: Style svg?

#129207
Paulie_D
Member

Dunno…does it work if you do?

svg.style /* no space */

will only select svg elements that have a class of style…the div element won’t be selected at all.

svg .style /* with space */

will select elements with a class of style **inside** svg elements…and that’s not what you want.