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