Here is the current structure of my code:
<div class="container-fluid">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-3"></div>
<div class="col-md-3"></div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-2"></div>
</div>
</div>
I am looking to center the 9 columns in the first row and the 4 columns in the second row. I have already successfully centered the second case using the following code:
<div class="row">
<div class="col-md-2 col-md-offset-4"></div>
<div class="col-md-2"></div>
</div>
Now, I need guidance on how to center the 9 columns in the first row effectively with Bootstrap.