I have two divs taking up half of the screen each. When I add a p tag inside the second div, it pulls it down. Why is this happening? I creating an html email so I have to use only inline styling and can't reference outside stylesheets with grid systems.
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>