使用 Twitter bootstrap 2.1.0 中的最新样式表,我无法在 IE explorer 9 中获得带有正确呈现选项卡的导航栏。
图片在这里
(对不起,我无法嵌入)
它在 Chrome 中正确呈现。
这是完整的示例:http: //jsbin.com/usugiz/3/edit
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<ul class="nav nav-tabs">
<li class="active">
<a href="#">Home</a>
</li>
<li><a href="#">...</a></li>
<li><a href="#">...</a></li>
</ul>
</body>
</html>
奇怪的是,它在 JS Bin 预览中正确呈现?