Home › Forums › CSS › Style svg? › Re: Style svg?
March 21, 2013 at 12:32 pm
#129207
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.