0

使用 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 预览中正确呈现?

4

1 回答 1

0

<!DOCTYPE html>在HTML 的顶部放置一个。

如果您好奇,本页顶部将解释原因

于 2012-08-30T22:51:24.977 回答