SyntaxFix
Write A Post
Hire A Developer
Questions
You can use the sibling selector ~:
~
h1.hc-reform ~ p{ clear:both; }
This selects all the p elements that come after .hc-reform, not just the first one.
p
.hc-reform