I have an standard Bootstrap <div>
with the .container
class and an interior <div>
with the .well span9
class. I need to center the the .well
div in the container but it always float to left! I think it is because of using .span9
but how I can force the div to have .span9
class and also be centered?
here is the code which I have
<div class="container">
<div class="well span9"> </div>
</div>