bootstrap按钮css没有加载

时间:2013-06-14 12:10:18

标签: twitter-bootstrap

我下载了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> 

为什么我没有为按钮设置样式?

2 个答案:

答案 0 :(得分:2)

您正在使用btnbnt交换,而<body> <div class = "container"> <form> <button class="btn btn-primary"> My Button </button> </form> </div> </body> 将无法呈现。

尝试:

{{1}}

您可以在此处查看结果:http://jsfiddle.net/YuURs/

答案 1 :(得分:1)

你写过bnt,它是btn

试试这个:

<button type = "button" class = "btn btn-primary"> My Button </button>