CSS Position(定位)
# CSS Position(定位)
position
属性指定了元素的定位类型。
position 属性的五个值:
元素可以使用 top
、bottom
、left
和 right
属性进行定位。然而,这些属性只有在设定了 position
属性后才能生效,并且其效果取决于所使用的定位方法。
# 1. static 定位
- HTML 元素的默认值,即没有特殊定位,遵循正常的文档流。
- 静态定位的元素不会受到
top
、bottom
、left
、right
的影响。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
div.static {
position: static; /* 静态定位 */
border: 3px solid #73AD21; /* 绿色边框 */
}
</style>
</head>
<body>
<h2>position: static;</h2>
<p>使用 position: static; 定位的元素,无特殊定位,遵循正常的文档流对象:</p>
<div class="static">
该元素使用了 position: static;
</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 2. fixed 定位
- 元素的位置相对于浏览器窗口是固定的。
- 即使窗口滚动,它也不会移动。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
p.pos_fixed {
position: fixed; /* 固定定位 */
top: 30px; /* 距离顶部30像素 */
right: 5px; /* 距离右侧5像素 */
}
</style>
</head>
<body>
<p class="pos_fixed">这是一段固定定位的文本</p>
<p><b>注意:</b> IE7 和 IE8 支持 fixed 定位需要一个 !DOCTYPE 声明。</p>
<p>滚动页面以查看效果。</p>
<p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
注意: Fixed 定位在 IE7 和 IE8 下需要描述 !DOCTYPE 才能支持。
- Fixed 定位使元素的位置与文档流无关,因此不占据空间。
- Fixed 定位的元素会与其他元素重叠。
# 3. relative 定位
相对定位元素的定位是相对其正常位置。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
h2.pos_left {
position: relative; /* 相对定位 */
left: -20px; /* 向左移动20像素 */
}
h2.pos_right {
position: relative; /* 相对定位 */
left: 20px; /* 向右移动20像素 */
}
</style>
</head>
<body>
<h2>这是位于正常位置的标题</h2>
<h2 class="pos_left">这个标题相对于其正常位置向左移动</h2>
<h2 class="pos_right">这个标题相对于其正常位置向右移动</h2>
<p>相对定位会按照元素的原始位置对该元素进行移动。</p>
<p>样式 "left:-20px" 从元素的原始左侧位置减去 20 像素。</p>
<p>样式 "left:20px" 向元素的原始左侧位置增加 20 像素。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
相对定位元素的移动不会影响其他元素,它原本所占的空间不会改变。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
h2.pos_top {
position: relative; /* 相对定位 */
top: -50px; /* 向上移动50像素 */
}
</style>
</head>
<body>
<h2>这是一个没有定位的标题</h2>
<h2 class="pos_top">这个标题是根据其正常位置向上移动</h2>
<p><b>注意:</b> 即使相对定位元素的内容是移动, 预留空间的元素仍保存在正常流动。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
相对定位元素经常被用来作为绝对定位元素的容器块。
# 4. absolute 定位
绝对定位的元素相对于最近的已定位父元素。如果元素没有已定位的父元素,那么它的位置相对于 <html>
。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
h2 {
position: absolute; /* 绝对定位 */
left: 100px; /* 距离左侧100像素 */
top: 150px; /* 距离顶部150像素 */
}
</style>
</head>
<body>
<h2>这是一个绝对定位的标题</h2>
<p>用绝对定位,一个元素可以放在页面上的任何位置。标题下面放置距离左边的页面100 px和距离页面的顶部150 px的元素。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
absolute
定位使元素的位置与文档流无关,因此不占据空间。absolute
定位的元素和其他元素会重叠。
# 5. sticky 定位
sticky
基于用户的滚动位置来定位。在 position:relative
与 position:fixed
定位之间切换。
- sticky 英文字面意思是粘,粘贴,所以可以把它称之为粘性定位。
- position: sticky; 基于用户的滚动位置来定位。
- 粘性定位的元素是依赖于用户的滚动,在 position:relative 与 position:fixed 定位之间切换。
- 它的行为就像 position:relative; 而当页面滚动超出目标区域时,它的表现就像 position:fixed;,它会固定在目标位置。
- 元素定位表现为在跨越特定阈值前为相对定位,之后为固定定位。
- 这个特定阈值指的是
top
,right
,bottom
或left
之一,换言之,指定top
,right
,bottom
或left
四个阈值其中之一,才可使粘性定位生效。否则其行为与相对定位相同。 - 注意: Internet Explorer, Edge 15 及更早 IE 版本不支持 sticky 定位。 Safari 需要使用
-webkit-
前缀 (查看以下实例)。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
div.sticky {
position: -webkit-sticky; /* Safari 使用 -webkit- 前缀 */
position: sticky; /* 粘性定位 */
top: 0; /* 滚动到顶部时固定 */
padding: 5px;
background-color: #cae8ca;
border: 2px solid #4CAF50;
}
</style>
</head>
<body>
<p>尝试滚动页面。</p>
<p>注意: IE/Edge 15 及更早 IE 版本不支持 sticky 属性。</p>
<div class="sticky">我是粘性定位!</div>
<div style="padding-bottom:2000px">
<p>滚动我</p>
<p>来回滚动我</p>
<p>滚动我</p
>
<p>来回滚动我</p>
<p>滚动我</p>
<p>来回滚动我</p>
</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 6. 重叠的元素
元素的定位与文档流无关,所以它们可以覆盖页面上的其它元素。
z-index
属性指定了一个元素的堆叠顺序(哪个元素应该放在前面,或后面)。一个元素可以有正数或负数的堆叠顺序:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
img {
position: absolute; /* 绝对定位 */
left: 0px;
top: 0px;
z-index: -1; /* 设置 z-index 为 -1,使其显示在文字后面 */
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<img src="w3css.gif" width="100" height="140" />
<p>因为图像元素设置了 z-index 属性值为 -1, 所以它会显示在文字之后。</p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
注意: 如果两个定位元素重叠,没有指定 z-index
,最后定位在 HTML 代码中的元素将被显示在最前面。
# 7. 所有的CSS定位属性
编辑此页 (opens new window)
上次更新: 2024/12/28, 18:32:08