Are there any CSS properties that can not be inlined?

css, html, javascript

Solution

Css properties can all be used,

but you cannot use pseudoclasses and pseudoelements like `:hover`, `:after` `:nth-child()` etc.

Problem

When I say inline, I mean placing CSS properties within the style attribute. Is there a way to determine with Javascript if a particular property can not be inlined or not?

Original source