如何使用 Boostrap 将我的所有网站内容居中(无论浏览器的宽度是多少)?这是一个小提琴,它演示了当我希望它居中时内容如何倾向于向右倾斜:http: //jsfiddle.net/Fqzuu/5/embedded/result/
<div class="container">
<div id="whitespaceOnLeft" class="span2"></div>
<div id="allSiteContent" class="span8">
<h1 class="text-center">My Site</h1>
<div>I'd like my site's content to all be centered, a common web design paradigm. However, 'container' seems to skew toward the right; using 'container-fluid' seems to skew toward the left. (More obvious when you make your browser narrower.)</div>
</div>
<div id="whitespaceOnRight" class="span2"></div>
</div>