How to override inline CSS without using !important or javascript?

css, html

Solution

No, inline style takes precedence, you can override it only with `!important`.

Problem

Is there any way to override inline CSS without using `!important` and without using JavaScript? For example: ``` <div style="background-color: red;"></div> ``` I was wondering if it can be overridden without: ``` div { background-color: blue !important; } ```

Original source