我下载了 twitter bootstrap 并且大多数 css 似乎都在工作,但我无法让按钮正确呈现。我只是得到默认按钮。下面是我正在使用的一些测试html:
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<div class = "container">
<form>
<button type = "button" class = "bnt bnt-primary"> My Button </button>
</form>
</div>
</body>
</html>
为什么我没有得到按钮的样式?