I have decided to update my website to Bootstrap3 and encountered a common issue that many others seem to be facing as well. I am trying to evenly distribute 4 elements, each approximately 220px wide, inside a 990px container. In the old version of Bootstrap, margins were automatically added for this purpose. However, with the new padding approach, this is no longer the case. Does anyone have any tips on how to solve this problem?
Here is an example code snippet :
<div class="container">
<div class="row">
<section class="col-md-12">
<article class="col-md-3">content</article>
<article class="col-md-3">content2</article>
<article class="col-md-3">content3</article>
<article class="col-md-3">content4</article>
</section>
</div>
</div>
Check out the fiddle link for more details :