Exploring the latest version of Bootstrap, I am experimenting with the updated grid system to create two columns. Here's the code snippet in this JSFiddle:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 hidden-xs-down">
Displaying some content on the left that will be smaller than the right
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">
A <br/>
B <br/>
C <br/>
D <br/>
E <br/>
F <br/>
</div>
</div>
Currently, both columns have matching heights which is not the desired layout for the content I intend to display.
After researching, I discovered that this feature was absent in Bootstrap 3 and has been newly introduced in Bootstrap 4 as the default setting.