1
It would be good practice to declare grids within grids using twitter bootstrap and this can affect code responsiveness?
Example:
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column"> <!-- 12 colunas -->
<div class="row clearfix">
<div class="col-md-6 column"> <!-- divide aqui -->
<div class="row clearfix">
<div class="col-md-4 column"> <!-- divide denovo 6 -->
</div>
<div class="col-md-4 column">
</div>
<div class="col-md-4 column">
</div>
</div>
</div>
<div class="col-md-6 column">
</div>
</div>
</div>
</div>
Problem does not have any, but of course if a column is already narrow, add 12 more inside it will not get visually interesting (on desktop).
– Kazzkiq
There is no problem then, divide one of 6 into two of 3 (for example)?
– Marcelo Aymone
No. The grid system has the size relative to the parent element. That is, it automatically fits. Also, when used in the mobile version, the columns behave like rows in the same way. So briefly, you can use without fear.
– Kazzkiq