I'm currently having trouble with aligning Bootstrap columns. Can someone assist me, please?
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col-md-4">
<p style="background-color: #C3C3C3">
DIV 1 - content should be on the left.<br />
This content is higher than the right (DIV 2) content.
</p>
</div>
<div class="col-md-8">
<p style="background-color: #D1D1D1">
DIV 2 - content should be on the right.
</p>
</div>
<div class="col-md-8">
<p style="background-color: #F1F1F1">
DIV 3 - Content should be on the desktop right. And mobile below both DIVs.
</p>
</div>
</div>
</div>
The desired outcome should resemble this: