2.1常见网页布局
第一种
第二种
第三种(最常见的)
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.top {
background-color: #ececf8;
height: 55px;
}
.banner {
width: 770px;
height: 145px;
background-color: #ececf8;
margin: 17px auto 19px;
}
.box {
height: 375px;
width: 766px;
background-color: #ececf8;
margin: 0 auto 16px;
}
.n1>div {
float: left;
height: 110px;
width: 184px;
background-color: pink;
margin-bottom: 25px;
margin-right: 10px;
}
.n1 .s1 {
margin-right: 0;
}
.n2>div {
float: left;
height: 240px;
width: 184px;
background-color: pink;
margin-right: 10px;
}
.n2 .s2 {
margin-right: 0;
}
/* 通栏不需要指定宽度,与浏览器一样宽 */
.footer {
height: 195px;
background-color: #ececf8;
}
</style>
</head>
<body>
<div class="top">top</div>
<div class="banner">banner</div>
<div class="box">
<div class="n1">
<div>1</div>
<div>2</div>
<div>3</div>
<div class="s1">4</div>
</div>
<div class="n2">
<div>5</div>
<div>6</div>
<div>7</div>
<div class="s2">8</div>
</div>
</div>
<div class="footer">footer</div>
</body>
</html>
2.2浮动布局注意点
1.浮动和标准流的父盒子搭配
先用标准流的父元素排列上下位置,之后内部子元素采取浮动排列左右位置
2. 一个元素浮动了,理论上其余的兄弟元素也要浮动
一个盒子里面有多个子盒子,如果其中一个盒子浮动了,那么其他兄弟也应该浮动,以防止引起问题。
注意:
浮动的盒子只会影响浮动盒子后面的标准流,不会影响前面的标准流
例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 600px;
height: 300px;
background-color: antiquewhite;
margin: 0 auto;
}
.one {
/* float: left; */
width: 100px;
height: 100px;
background-color: skyblue;
}
.two {
float: left;
width: 130px;
height: 150px;
background-color: pink;
}
.three {
/* float: left; */
width: 200px;
height: 200px;
background-color: greenyellow;
}
</style>
</head>
<body>
<div class="box">
<div class="one">大一</div>
<div class="two">大二</div>
<div class="three">大三</div>
</div>
</body>
</html>
即前面的标准流(大一)独占一行,不会被后面的浮动流(大二)压住,但后面的标准流(大三)会被前面的浮动流压住
当上述大一、大三为浮动流,大二为标准流时:
2.3 思考
我们前面用浮动元素时都有一个标准流的父元素, 他们有一个共同的特点——都有高度.
但是,并不是所有的父盒子都必须有高度
理想中的状态:让子盒子撑开父盒子,有多少子盒子,父盒子就有多高.