标签:opd hid image off 导航条 代码 排版 需要 响应
Bootstrap 让我们的 Web 开发更简单,更快捷;
是 Twitter 公司的两名前端工程师 Mark Otto 和 Jacob Thornton 在 2011 - 年发起的,并利用业余时间完成第一个版本的开发;
使用 Bootstrap 并不代表不用写 CSS 样式,而是不用写绝大多数大家都会用到的样式
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>页面标题</title> <!-- 引入Bootstrap核心样式文件(必须) --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- 引入Bootstrap默认主题样式(可选) --> <link rel="stylesheet" href="css/bootstrap.theme.min.css"> <!-- 你自己的样式或其他文件 --> <link rel="stylesheet" href="example.css"> </head> <body> <!-- 你的HTML结构...... --> <!-- 以下代码,如果不使用JS插件则不需要 --> <!-- 由于Bootstrap的JS插件依赖jQuery,so 引入jQuery --> <script src="js/jquery.min.js"></script> <!-- 引入所有的Bootstrap的JS插件 --> <script src="bootstrap.min.js"></script> <!-- 你自己的脚本文件 --> <script src="example.js"></script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn‘t work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>Hello, world!</h1> <!-- jQuery (necessary for Bootstrap‘s JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
Bootstrap框架中的所有JS组件都依赖于jQuery实现
让低版本浏览器可以识别HTML5的新标签,如header、footer、section等
让低版本浏览器可以支持CSS媒体查询功能
@media (判断条件(针对于当前窗口的判断)){ /*这里的代码只有当判断条件满足时才会执行*/ } @media (min-width: 768px) and (max-width: 992px) { /*这里的代码只有当(min-width: 1280px)满足时才会执行*/ .container { width: 750px; } }
标签:opd hid image off 导航条 代码 排版 需要 响应
原文地址:https://www.cnblogs.com/shuai1991/p/10884603.html