1

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

为什么我没有得到按钮的样式?

4

2 回答 2

2

您正在btn与交换bnt,它不会呈现。

尝试:

<body>
    <div class = "container">
        <form>
            <button class="btn btn-primary"> My Button </button>
        </form>
    </div>
</body>

你可以在这里看到结果:http: //jsfiddle.net/YuURs/

于 2013-06-14T12:14:45.060 回答
1

你写了bnt,它是btn

尝试这个 :

<button type = "button" class = "btn btn-primary"> My Button </button>
于 2013-06-14T12:14:45.513 回答