I am studying Bootstrap and would like to ask a question, I did an experiment here and would like to know how to do when it is minimized to cel, how to automatically align the grids, when minimizo it overlaps my section, unless that I put the div with less margin-top, but the idea is to stay in the middle and when they are minimized, get set, how do I?
My code below
<div class="deve">
<div class="container">
<div class="row">
<div class="col-md-3 col-6">
<div class="branco">
</div>
</div>
<div class="col-md-3 col-6">
<div class="branco">
</div>
</div>
<div class="col-md-3 col-6">
<div class="branco">
</div>
</div>
<div class="col-md-3 col-6">
<div class="branco">
</div>
</div>
</div>
</div>
CSS
.deve { background: black; width: 100%; height: 380px; position: absolute; }
.branco { background: white; width: 100%; ; height: 130px; position: relative; margin-top: 90px;}
Thank you!