我的专栏使用 Twitter 引导程序遇到了一个奇怪的问题。设置一个测试页面,其行为应类似于此处的示例:http: //twitter.github.io/bootstrap/examples/hero.html。这是html:
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/assets/24d7eb4f/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="/assets/24d7eb4f/css/bootstrap-yii.css" />
<link rel="stylesheet" type="text/css" href="/assets/24d7eb4f/css/bootstrap-responsive.min.css" />
<script type="text/javascript" src="/assets/8b15478e/jquery.js"></script>
<script type="text/javascript" src="/assets/24d7eb4f/js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="span4" style="border: 1px solid red;"></div>
<div class="span4" style="border: 1px solid red;"></div>
<div class="span4" style="border: 1px solid red;"></div>
</div>
</div>
</body>
应该产生上面链接中显示的结果,但我span4
在下一行得到第三个,它首先被推到两个下面。除此之外,容器的行为与预期一样,即居中。
我在这里想念什么?