I recently started working with bootstrap 4 and I am having an issue with the columns not appearing at the same height as expected. Here is the code snippet I am using:
<div class="row">
<div class="col-8">
<div class="projectDescBox">
<h5>Project</h5>
<p>Stuff here</p>
</div>
</div>
<div class="col-4">
<div class="projectDescBox">
<h5>heading</h5>
<p>a lot longer stuff here. This box should be a lot longer.a lot longer stuff here. This box should be a lot longer.a lot longer stuff here. This box should be a lot longer.</p>
</div>
</div>
(The code is in a container class). According to the bootstrap documentation, the columns should be automatically the same height. However, the output I am getting looks like this: screenshot
Can anyone help me figure out what I am missing? Thank you!