普通流(标准流)
浮动
定位
1. 当我们滚动窗口的时候,盒子是固定屏幕某个位置的
结论:要实现以上效果,标准流或浮动都无法快速实现
将盒子定在某一个位置 自由的漂浮在其他盒子(包括标准流和浮动)的上面
所以,我们脑海应该有三种布局机制的上下顺序
标准流在最底层 (海底) ------- 浮动 的盒子 在 中间层 (海面) ------- 定位的盒子 在 最上层 (天空)
定位 = 边偏移 + 定位模式
简单说, 我们定位的盒子,是通过边偏移来移动位置的。
在 CSS 中,通过 top
、bottom
、left
和 right
属性定义元素的边偏移:(方位名词)
边偏移属性 | 示例 | 描述 |
---|---|---|
top |
top: 80px |
顶端偏移量,定义元素相对于其父元素上边线的距离。 |
bottom |
bottom: 80px |
底部偏移量,定义元素相对于其父元素下边线的距离。 |
left |
left: 80px |
左侧偏移量,定义元素相对于其父元素左边线的距离。 |
right |
right: 80px |
右侧偏移量,定义元素相对于其父元素右边线的距离 |
position
属性定义元素的定位模式,语法如下:选择器 { position: 属性值; }
值 | 语义 |
---|---|
static |
静态定位 |
relative |
相对定位 |
absolute |
绝对定位 |
fixed |
固定定位 |
效果图:
<head>
<meta charset="UTF-8">
<title>相对定位title>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none
}
a {
text-decoration: none;
color: #666;
}
a:hover {
color: #c81623
}
.box1,
.box2,
.box3 {
height: 100px;
border: #c81623 2px dashed;
}
.box1 {
background-color: red;
}
.box2 {
background-color: blue;
position: relative;
left: 200px;
top: 50px;
}
.box3 {
background-color: yellow;
float: left;
}
style>
head>
<body>
<div class="box1">div>
<div class="box2">div>
<div class="box3">box3box3box3box3box3box3box3box3box3div>
body>
html>
相对定位的特点:(务必记住)
绝对定位的特点:(务必记住)
<head>
<meta charset="UTF-8">
<title>绝对定位title>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none
}
a {
text-decoration: none;
color: #666;
}
a:hover {
color: #c81623
}
.father {
width: 400px;
height: 400px;
background-color: red;
/* 绝对定位 margin会失效,但是相对定位 margin不会 */
margin: 0 auto;
position: relative;
}
.son {
width: 200px;
height: 200px;
background-color: yellow;
/*
绝对定位特点:
1.使用绝对定位的元素的起始点是最近的的定位父元素,
如果找不到,就以浏览器的起始点作为参照点
*/
position: absolute;
top: 200px;
left: 200px;
}
style>
head>
<body>
<div class="father">
<div class="son">div>
div>
body>
html>
刚才咱们说过,绝对定位,要和带有定位的父级搭配使用,那么父级要用什么定位呢?
子绝父相 —— 子级是绝对定位,父级要用相对定位。
子绝父相是使用绝对定位的口诀,要牢牢记住!
疑问:为什么在布局时,子级元素使用绝对定位时,父级元素就要用相对定位呢?
结论:父级要占有位置,子级要任意摆放,这就是子绝父相的由来。
<head>
<meta charset="UTF-8">
<title>子绝父相title>
head>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none
}
a {
text-decoration: none;
color: #666;
}
a:hover {
color: #c81623
}
.header,
.nav,
.banner,
.content,
.footed {
width: 1200px;
height: 100px;
border: 2px red solid;
margin: 10px auto;
}
/* 子绝父相 */
.title {
width: 100px;
height: 50px;
font-size: 20px;
text-align: center;
line-height: 50px;
background-color: aqua;
position: absolute;
top: 50px;
left: 1100px;
}
.content {
/* 父 相对定位 */
position: relative;
}
style>
<body>
<div class="header">1div>
<div class="nav">2div>
<div class="banner">3div>
<div class="content">4
<div class="title">标题div>
div>
<div class="footed">5div>
body>
html>
固定定位是绝对定位的一种特殊形式: 如果说绝对定位是一个矩形 那么 固定定位就类似于正方形
浏览器可视窗口 + 边偏移属性
来设置元素的位置;
案例演练:固定定位案例。
提示:IE 6 等低版本浏览器不支持固定定位。
<head>
<meta charset="UTF-8">
<title>固定定位title>
head>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none
}
a {
text-decoration: none;
color: #666;
}
a:hover {
color: #c81623
}
body {
height: 2000px;
background-color: #cccc;
}
.box {
width: 50px;
height: 200px;
font-size: 30px;
text-align: center;
background-color: orange;
position: fixed;
left: 100px;
top: 100px;
}
style>
<body>
<div class="box">广告信息div>
body>
html>
left: 50%;
:让盒子的左侧移动到父级元素的水平中心位置;margin-left: -100px;
:让盒子向左移动自身宽度的一半。<head>
<meta charset="UTF-8">
<title>绝对定位盒子居中显示title>
head>
<style>
.box {
width: 200px;
height: 200px;
background-color: orange;
/* 有了固定定位 0 auto 就无效 */
/* margin: 0 auto; */
position: fixed;
left: 50%;
margin-left: -100px;
}
style>
<body>
<div class="box">div>
body>
html>
z-index
的特性如下:
注意:z-index
只能应用于相对定位、绝对定位和固定定位的元素,其他标准流、浮动和静态定位无效。
<head>
<meta charset="UTF-8">
<title>堆叠顺序title>
head>
<style>
.box {
width: 400px;
height: 400px;
background-color: orange;
position: relative;
}
.box1 {
width: 200px;
height: 200px;
background-color: red;
position: absolute;
/* 层叠性 默认0 值越大 越靠前显示 */
z-index: 1;
}
.box2 {
width: 200px;
height: 200px;
background-color: blue;
position: absolute;
}
style>
<body>
<div class="box">
<div class="box1">div>
<div class="box2">div>
div>
body>
html>
前面我们讲过, display 是 显示模式, 可以改变显示模式有以下方式:
所以说, 一个行内的盒子,如果加了浮动、绝对定位和固定定位,不用转换,就可以给这个盒子直接设置宽度和高度等。
同时注意:
浮动元素、绝对定位(固定定位)元素的都不会触发外边距合并的问题。 (我们以前是用padding border overflow解决的)
也就是说,我们给盒子改为了浮动或者定位,就不会有垂直外边距合并的问题了。
定位模式 | 是否脱标占有位置 | 移动位置基准 | 模式转换(行内块) | 使用情况 |
---|---|---|---|---|
静态static | 不脱标,正常模式 | 正常模式 | 不能 | 几乎不用 |
相对定位relative | 不脱标,占有位置 | 相对自身位置移动 | 不能 | 基本单独使用 |
绝对定位absolute | 完全脱标,不占有位置 | 相对于定位父级移动位置 | 能 | 要和定位父级元素搭配使用 |
固定定位fixed | 完全脱标,不占有位置 | 相对于浏览器移动位置 | 能 | 单独使用,不需要父级 |
注意:
top
和 bottom
不要同时使用;left
和 right
不要同时使用。