美文网首页Web前端WEB前端程序开发我爱编程
Bootstrap3 - 2.基于bootstrap的HTML文

Bootstrap3 - 2.基于bootstrap的HTML文

作者: 廖马儿 | 来源:发表于2018-01-02 22:56 被阅读14次

    响应式:
    我们需要在head标签中添加viewport的meta标签

    <head>
        <meta name="viewport" content="width=device-width, scale=1.0">
    </head>
    

    viewport的详解:https://www.cnblogs.com/pigtail/archive/2013/03/15/2961631.html

    让浏览器用最新的引擎去渲染这个页面:

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

    引入bootstrap库到我们页面:

    <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
    

    代码:

    <!doctypoe html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <meta name="viewport" content="width=device-width, scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
        <link rel="stylesheet" href="css/style.css">
    </head>
    <body>
    
    
        <script src="lib/jquery/jquery.min.js"></script>
        <script src="lib/bootstrap/js/bootstrap.min.js"></script>   
    
    </body>
    </html>
    

    相关文章

      网友评论

        本文标题:Bootstrap3 - 2.基于bootstrap的HTML文

        本文链接:https://www.haomeiwen.com/subject/xzkcnxtx.html