Im using bootstap grid and in small devices I have two columns with a default bootstrap space between. Do you know how to give the same space to margin-bottom so the columns have the same space between both vertically and horizontally?
Below this is the example, without margin-bottom, do you know how to give a margin-bottom or top equal to the horizontal margin between the columns?
https://jsfiddle.net/wa1cjfn6/
html:
<div class="HomeEvents">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="content">
<h1>
text
</h1>
</div>
</div>
<div class="col-sm-6">
<div class="content">
<h1>
text
</h1>
</div>
</div>
<div class="col-sm-6">
<div class="content">
<h1>
Text
</h1>
</div>
</div>
</div>
</div>
</div>
css:
.content{
border:1px solid red;
margin-top:15px;
}