我想知道这是一个bug还是我的某个错误。在我的Rails项目中,twitter的bootstrap没有将容器对齐到中心。
我的代码:
<div class="container">
<div class="span12" style="background-color:blue; color:white;">
<%= yield %> <!-- This get the sample text "Some test." -->
</div>
</div>这是一张bug的图片。http://img543.imageshack.us/img543/3405/screenshot20120702at035.png
非常感谢大家!:-)
发布于 2012-07-02 15:11:57
<div class="container">
<div class="row">
<div class="span12">
</div>
</div>
</div>DEMO
https://stackoverflow.com/questions/11289139
复制相似问题