Is there a way to add some space between the div with H3-1 and the div containing H3-2.
- Without using custom
CSSwould be preferable but it is not necessary. - If possible, I would like to keep
col-sm-6because usingcol-sm-5andoffsetadds more space than what I want. - The
ml-autoandmr-autois also important because sometimes there can be odd number of columns (which comes in dynamically) and it needs to be centered.
@import url(https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css);
<div class="container">
<div class="row row-eq-height">
<div class="col-sm-6 border align-top ml-auto mr-auto mt-3 bg-light">
<div class="m-0 p-2">
<h3>H3-1</h3>
<p>sad ajsdha sjhd ajshdjashd jashdj ashdj ashd jashd jashdj ashdj ashdj ashdj ashdjas dashdj asdhjashd ashd as</p>
</div>
</div>
<div class="col-sm-6 border align-top ml-auto mr-auto mt-3 bg-light">
<div class="m-0 p-2">
<h3>H3-2</h3>
<p>asjd asjdh asjdhasj hasjdh jshd jashjas dh jasdha jdh jashdj ashdj shdj ashdj </p>
</div>
</div>
<div class="col-sm-6 border align-top ml-auto mr-auto mt-3 bg-light">
<div class="m-0">
<h3>H3-3</h3>
<p>asd asd asd a</p>
</div>
</div>
</div>
</div>