zoukankan      html  css  js  c++  java
  • BootStrap基础

    BootStrap基础

    1 什么是BootStrap

    • 由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架
      简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。

    2 BootStrap的版本

    • BootStrap2
    • BootStrap3
    • BootStrap4

    3 BootStrap 下载

    4 CDN服务

    <!-- 新 Bootstrap 核心 CSS 文件 -->
    <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
    
    <!-- 可选的Bootstrap主题文件(一般不用引入) -->
    <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
    
    <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
    <script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
    
    <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
    <script src="http://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
    

    5 目录结构

    生产环境版

    bootstrap/
    ├── css/
    │   ├── bootstrap.css
    │   ├── bootstrap.css.map
    │   ├── bootstrap.min.css
    │   ├── bootstrap-theme.css
    │   ├── bootstrap-theme.css.map
    │   └── bootstrap-theme.min.css
    ├── js/
    │   ├── bootstrap.js
    │   └── bootstrap.min.js
    └── fonts/
        ├── glyphicons-halflings-regular.eot
        ├── glyphicons-halflings-regular.svg
        ├── glyphicons-halflings-regular.ttf
        ├── glyphicons-halflings-regular.woff
        └── glyphicons-halflings-regular.woff2
    

    6 基本模板

    <!DOCTYPE html>
    <html lang="zh-CN">
      <head>
        
        
        
        <!-- 上述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>
          <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
        <![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>
        <!-- Include all compiled plugins (below), or include individual files as needed -->
        <script src="js/bootstrap.min.js"></script>
      </body>
    </html>
    

    7 浏览器支持

    手机浏览器

    ------- Chrome Firefox Safari
    Android Supported Supported N/A
    iOS Supported Supported Supported

    桌面浏览器

    --------- Chrome Firefox Internet Explorer Opera Safari
    Mac Supported Supported N/A Supported Supported
    Windows Supported Supported Supported Supported Not supported

    8 浏览器兼容

    让 IE8 支持H5新标签

    页面中引入respond.js

    <!-- 注意: 页面必须通过服务器访问 -->
    <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    

    IE兼容模式

    页面中添加如下代码

    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    

    国产浏览器切换webkit内核

    页面中添加如下代码

    <meta name="renderer" content="webkit">
    
  • 相关阅读:
    第06组 Beta冲刺(4/5)
    第06组 Beta冲刺 (3/5)
    第06组 Beta冲刺 (2/5)
    第06组 Beta冲刺 (1/5)
    Attention与Transformer学习【更新中】
    【李沐】动手学深度学习-pytorch 2021版 softmax回归的简洁实现
    【李沐】动手学深度学习-pytorch 2021版 从零开始实现softmax回归
    [Java]剑指offer:矩阵中的路径
    [Java]剑指offer:平衡二叉树
    [Java]剑指offer:链表中倒数第k个结点
  • 原文地址:https://www.cnblogs.com/TMesh/p/11755880.html
Copyright © 2011-2022 走看看