After hours of pulling my hair out as to why my columns all kept being set to the same height I learned bootstrap now automatically ships this way in v4. How does one go about turning that off and going bad to normal columns of v3?
Thanks.
<div class="container">
<div class="row">
<div class="col-sm-8">
<p> Hi, I'm a small container. </p>
</div>
<div class="col-sm-4">
<h1> Hi, I'm a much bigger container. </h1>
</div>
</div>
</div>
In this example, my smaller div's height gets stretched so it is the same height as the bigger one for the larger text. This is what I want to avoid.