Inline Content CSS Property

css

Solution

No. Inline styles via the 'style' attribute can only be applied to the context element, without any selectors of any sort.

Problem

Is it possible to use CSS's 'content' property using inline CSS something like this: ``` <p class="myclass" style=".myclass:after:content = 'my content here'">Hello There !!</p> ```

Original source