Trying to adjust line height in a paragraph using CSS. Here is the HTML:
<div>
<p>Lorem ipsum dolor sit amet, oratio doctus his an. Nisl saperet delenit ad
eos, his eros solet vituperata et, has tantas nemore consetetur ne. Nam cu autem nostr overterem.
Ne etiam detraxit adversarium eam, rebum epicurei ea ius. Appareat lucilius
invenire duo eu, an enim oportere duo, vidisse quaerendum at duo.
</p>
</div>
Simple CSS:
p {
line-height: 5.5em;
background-color:#ccc;
}
The line height is adjusted correctly, but looking to remove space from top and bottom as shown in the linked image.
Any assistance with this would be appreciated!