How do I remove space between paragrah and a specific html list? Based on image provided, I want the list to be moved up closer to the paragrah:
<p><strong>Reason</strong><br/>
As part of the change from the NHS, the following drugs are unable to be prescribed by the doctor and requires a special consultant to prescribe these medications:
<ul class="nospaceabovelist">
<li>Clonazepam</li>
<li>Imitrex</li>
<li>Amoxil</li>
<li>Sensipar</li>
</ul>
</p>
p + .nospaceabovelist li{
margin: 0;
padding:0;
}