Hi there,
I am trying to remove the underline from the anchor tag.
I have the following in tagStyles:
a : {
color:'#0098D9',
fontSize: 15,
textDecoration: 'none'
},
but for some reason that style is not being applied. Any ideas on how to achieve this?
Thanks in advance for the help!
Key should be textDecorationLine not textDecoration
a : {
color:'#0098D9',
fontSize: 15,
textDecorationLine: 'none'
}
Why?
Most helpful comment
Key should be
textDecorationLinenottextDecoration