首先下载bootstrap:
压缩后有三个文件:
写个简单的html置入bootstrap:
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<!-- 可缩放的形式 -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- 加载Bootstrap层叠样式表 -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- 可用图标的示例 -->
<span class="glyphicon glyphicon-euro"/>
<span class="glyphicon glyphicon-heart"/>
<!-- 放在末尾是为了在文件加载结束之后是为了文档加载之后再开始解析避免出现错乱 -->
<!-- jQuery库,必须在加载bootstrap.min.js之前 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"/>
<!-- 加载bootstrap核心库 -->
<script src="js/bootstrap.min.js"/>
</body>
</html>
结果:
bootstrap是对移动设备友好的样式,也就是移动设备优先,那么viewport的不可缩放形式是:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">