Reemove underline from links in a SVG

I though that since I have pointer-events: none for any text element would solve this,
http://lukesspot.com/indus_links/system_ancc.html
What am I missing?

Placing a:hover rule in your internal svg styles works for me.

<svg viewBox=“0 0 700 450” xmlns=“http://www.w3.org/2000/svg”>
<defs> 
<style>
 svg { 
  margin-top:20px;
  padding:10p; 
}
a:hover {
  text-decoration: none		
}
1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.