:not can only be applied to simple selectors . Pseudo-elements are not simple selectors , so you cannot invert them.
You can apply non-first letter styles to the entire text and cancel them for the first letter.
For instance:
p { color: red; text-transform: uppercase; } p::first-letter { color: black; text-transform: none; }
<p>red capitals except the first letter.</p>
joews source share