我已经将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,世界!正文(没有引导字体)。我的系统有以下文件:
我可能做错了什么?
答案 0 :(得分:6)
您只包含bootstrap-theme.min.css
文件,而不包含基本bootstrap.css
文件。 (尽管你确实包含了bootstrap.js
文件)