Im working on html linter using css.
Link: https://bitsofco.de/linting-html-using-css/
I like the idea of highlighting elements that have inline styles:
*[style] { color: red !important; border: 5px solid red !important; }
However, I have certain instances where I have to use inline styles, i.e. canvas elements.
- How to use: not selector with *?
- Can I have several: nots, i.e.: not (canvas): not (form), etc.
source share