常见网页布局
1. 常见网页布局
示例代码
<!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">
<title>常见网页布局</title>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none;
}
.top {
height: 50px;
background-color: gray;
}
.banner {
width: 980px;
height: 150px;
background-color: gray;
margin: 10px auto;
}
.box1 {
width: 980px;
height: 120px;
margin: 0 auto;
background-color: pink;
margin-bottom: 12px;
}
.box1 li {
float: left;
width: 237px;
height: 120px;
background-color: gray;
margin-right: 10px;
}
.box1 .last1 {
margin-right: 0;
}
.box2 {
width: 980px;
height: 300px;
margin: 0 auto;
background-color: pink;
}
.box2 li {
float: left;
width: 237px;
height: 300px;
background-color: gray;
margin-right: 10px;
}
.box2 .last2 {
margin-right: 0;
}
/* 只要是通栏的盒子(和浏览器一样宽) 不需要指定宽度 */
.footer {
height: 200px;
background-color: gray;
margin-top: 18px;
}
</style>
</head>
<body>
<div class="top">top</div>
<div class="banner">banner</div>
<div class="box1">
<ul>
<li>1-1</li>
<li>1-2</li>
<li>1-3</li>
<li class="last1">1-4</li>
</ul>
</div>
<div class="box2">
<ul>
<li>2-1</li>
<li>2-2</li>
<li>2-3</li>
<li class="last2">2-4</li>
</ul>
</div>
<div class="footer">footer</div>
</body>
</html>
运行结果
2. 浮动布局注意点
-
浮动和标准流的父盒子搭配
先用标准流的父元素排列上下位置,之后内部子元素采取浮动排列左右位置。
-
一个元素浮动了,理论上其余的兄弟元素也要浮动
一个盒子里面有许多个子盒子,如果其中一个盒子浮动了,那么其他兄弟也应该浮动,以防止引起问题。
浮动的盒子只会影响浮动盒子后面的标准流,不会影响前面的标准流。
示例代码
<!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">
<title>浮动注意点</title>
<style>
/* 如果一个子元素浮动了,尽量其他盒子也浮动,这样保证这些子元素一行显示 */
.box {
width: 900px;
height: 300px;
background-color: pink;
margin: 0 auto;
}
.damao {
float: left;
width: 200px;
height: 200px;
background-color: purple;
}
.ermao {
/* float: left; */
width: 200px;
height: 150px;
background-color: red;
}
.sanmao {
float: left;
width: 300px;
height: 240px;
background-color: blue;
}
</style>
</head>
<body>
<div class="box">
<div class="damao">大毛</div>
<div class="ermao">二毛</div>
<div class="sanmao">三毛</div>
</div>
</body>
</html>
运行结果