I have this code
HTML:
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<p>Line</p>
<p>Line</p>
<p>Line</p>
<p>Line</p>
<p>Line</p>
<p>Line</p>
</div>
<div class="col-md-6">
<p>Line2</p>
<p>Line2</p>
</div>
</div>
</div>
As you can see two columns are not equal and each has a height content.
I tried to make this example in jsfiddle but clearly we did ... but I put the link
I tried to import bootstrap but not working
I also found this example in the documentation bootstrap but failed to implement it
Can you help me please implement this example (if possible in jsdfidle)?
Thanks in advance!