0
my doubt today is as follows:
I can put a larger col-Md inside a smaller one?
For example:
<div class="col-md-6 ">
<div class="col-md-12">
<p> Texto aqui</p>
</div>
</div>
My logic is: The second div would occupy 100% of the first. I just want to know if I’m right.
correct, col-Md-6 uses 50% of the space while col-Md-12 is 100%. its second div would have the size of the first.
– Leonardo Bosquett