Is there a way to disable only one specific value of a CSS property? For example, when it comes to the 'text-decoration' property, options include none, underline, overline, line-through, blink, and inherit.
I want to allow all values of text-decoration except for underline on ALL elements.
The pages I'm working on are dynamically generated and can include content from various sources across the web, making it impossible to target a specific element. Using 'none' for text decoration does work, but it removes all other values as well :(
Any suggestions?