I have a Bootstrap row containing a variable amount of divs and they need to be centered relative to their parent row. The html is set like this so far:
<div class="row proj-container">
<div class="proj col-md-4 col-xs-12"></div>
</div>
With javascript I clone and append inside .proj-container a variable number of .proj. It works fine and if the .proj are more than 3 they wrap correctly onto other lines thanks to grid disposition. What I am not being able to achieve is the centering of this sets of divs inside of their parent.
- assigning ".text-center" to parent doesn't work
- text-align on parent and inline-block on children doesn't work
- making parent flex and justify:space-around achieves centering the children but overrides the grid system (col-md-4) and they won't wrap if more than three or on smaller devices...
Any idea on how to style this in order to achieve centering AND wrapping of the divs?
Here is one more solution. Look at jsFiddle.
HTML: