if i have a header tag <h1 class="hc-reform">title</h1>
h1.hc-reform{
    float:left;
    font-size:30px;
    color:#0e73bb;
    font-weight:bold;
    margin:10px 0px;
}
and after that i have a paragraph <p>stuff here</p>
how can i say using CSS that every <p> tag that follows the h1.hc-reform to use: clear:both;
would that be:
h1.hc-reform > p{
     clear:both;
}
for some reason that's not working.