bootstrap學習

1.初次接觸bootstrap,首先官網上有bootstrap的模板css

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">//在IE運行最新的渲染模式
    <meta name="viewport" content="width=device-width, initial-scale=1">//初始化移動瀏覽顯示
    <!-- 上述3個meta標籤*必須*放在最前面,任何其餘內容都*必須*跟隨其後! -->
    <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="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>//使IE9如下版本瀏覽器兼容HTML5新增的標籤
      <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>//使IE9如下版本瀏覽器兼容css3樣式
    <![endif]-->
  </head>
  <body>
    <h1>你好,世界!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>//必須先引入jquery
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>
相關文章
相關標籤/搜索