image.png

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
    6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    7. <!-- 引入bootStrap里的css样式,不用引入normalize.css,因为里面包括了normalize.css -->
    8. <link rel="stylesheet" href="bootStrap/css/bootstrap.min.css">
    9. <!-- 引入自己的css -->
    10. <link rel="stylesheet" href="css/index.css">
    11. <title>Document</title>
    12. </head>
    13. <body>
    14. <div class="container">
    15. <!-- 先放row,去除padding -->
    16. <div class="row">
    17. <header class="col-md-2">
    18. <div class="logo">
    19. <a href="#">
    20. <img src="images/logo.png" alt="">
    21. </a>
    22. </div>
    23. </header>
    24. <article class="col-md-7">2</article>
    25. <aside class="col-md-3">3</aside>
    26. </div>
    27. </div>
    28. </body>
    29. </html>h
    1. /* 修改container最大宽度 */
    2. @media screen and (min-width:1280px) {
    3. .container {
    4. width: 1280px;
    5. }
    6. }
    7. /* header */
    8. header {
    9. padding-left: 0 !important;
    10. }
    11. header .logo {
    12. background-color: #418fca;
    13. }
    14. header .logo img {
    15. width: 100%;
    16. }