Can someone help with an issue I'm having? I have two divs that are supposed to take up half of the screen each. However, when I add a p tag inside the second div, it gets pulled down. I am working on creating an HTML email, so I can only use inline styling and can't reference external stylesheets or grid systems.
If you need more context, here is an example: https://jsfiddle.net/jzcxhp2L/1/
<div>
<div style="display: inline-block; width: 49%; height: 300px; border: 1px solid black;"></div>
<div style="display: inline-block; width: 49%; height: 300px; border: 1px solid black;">
<p>Lorem ipsum dolor</p>
</div>
</div>