I need to place inline !important css declarations in an e-mail signature, otherwise Gmail won't display it correct it.
My styles are binded via :style, and if I place !important in the declaration it removes that property.
...
linkStyle: {
"textDecoration": "none !important", //this gets autoremoved
"color": "#334593"
}
...
<a :style="linkStyle"></a>
...
Only the color gets applied, I've even tried this:
...
<a :style="linkStyle" style="text-decoration !important"></a>
...
To try and fool it, and it does get text-decoration:none applied but without the !important flag.
I'm lost. Can anybody tell me a workaround this?
!importantin the css associated with the class. github.com/vuejs/vue/issues/3761#issuecomment-249422167<a style="text-decoration:none !important"></a>