As the title says, I’m trying to figure out how to apply a CSS snippet to all instances of a given heading level except the first one. I’ve tried various combinations of .cm-header-1::not()
without any success. I also tried going the other way with ::first-of-type
and ::first-child
(so I could apply rules to all headers and then revert those changes for the first one) but again without any luck.
Has anyone figured out how to do this?