12

这两者有什么区别。我下载了 bootstrap.zip,我得到了 css 和 js 文件。我应该在html中包含哪一个?

如果我包含 bootstrap.css,会不会影响我自己的 app.css?如何同时使用 bootstrap.css 和我自己的 app.css?

由于我完全不知道如何在 HTML 中使用 css 和 js,所以我问了这个问题。但现在我明白了,我需要在 index.html 中同时包含 bootstrap.css 和 bootstrap.js。我也想出了如何使用它们。

4

2 回答 2

10

你有两个不同的引导库。一种用CSS,一种用JS。

CSS 库包含引导样式的基础:http: //getbootstrap.com/2.3.2/base-css.html

并且 js 包含一些图形组件和动画:​​http://getbootstrap.com/2.3.2/components.html

于 2013-09-24T09:23:16.753 回答
9

您必须包括两个文件和 jquery。

请仔细阅读引导文档和示例代码。

这就是带有引导程序的基本网页的样子。

<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">

<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
  <script src="../../assets/js/html5shiv.js"></script>
  <script src="../../assets/js/respond.min.js"></script>
<![endif]-->
 </head>
 <body>
<h1>Hello, world!</h1>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="//code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
 </body>
</html>
于 2013-09-24T09:21:03.847 回答