Bootstrap不能与MVC4一起使用

时间:2013-11-29 21:20:53

标签: c# asp.net-mvc asp.net-mvc-4 twitter-bootstrap

我已经将tweeter bootstrap(不是MVC的bootststrap)下载到一个全新的MVC4项目中,但是我无法让它工作。

浏览器的F12窗口没有错误。

这是我的_layout代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Bootstrap 101 Template</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Bootstrap -->
    <link href="@Url.Content("~/Content/bootstrap-theme.min.css")" rel="stylesheet" media="screen">
  </head>
  <body>
    <script src="@Url.Content("~/Scripts/jquery-2.0.3.min.js")"></script>
    <script src="@Url.Content("~/Scripts/bootstrap.min.js")"></script>
    <h1>Hello, world!</h1>
      @RenderBody()
  </body>
</html>

当屏幕弹出时,我得到一个正常的Hello,世界!正文(没有引导字体)。我的系统有以下文件:

enter image description here

我可能做错了什么?

1 个答案:

答案 0 :(得分:6)

您只包含bootstrap-theme.min.css文件,而不包含基本bootstrap.css文件。 (尽管你确实包含了bootstrap.js文件)