If I set have the following HTML:
<p>line 1</p>
<p>line 2</p>
With no CSS changes it is rendered like this:
line 1
line 2
but if I set the css to p { display: inline; }
, it renders like this:
line1line2
Which makes sense. If I set the css to p { display: initial; }
I'd expect it to return to block-style rendering but they're actually rendered inline.
Why is that?