CSS position 属性
下面还有更多“亲自尝试”示例。
定义和用法
position
属性指定用于元素的定位方法类型(static、relative、absolute、fixed 或 sticky)。
浏览器支持
表中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
position | 1.0 | 7.0 | 1.0 | 1.0 | 4.0 |
注意:Edge 15 及更早版本不支持sticky
值。
CSS 语法
position: static|absolute|fixed|relative|sticky|initial|inherit;
属性值
值 | 描述 | 演示 |
---|---|---|
static | 默认值。元素按顺序呈现,如同它们在文档流中出现的那样 | 播放 » |
absolute | 元素相对于其第一个定位(非 static)祖先元素进行定位 | 播放 » |
fixed | 元素相对于浏览器窗口进行定位 | 播放 » |
relative | 元素相对于其正常位置进行定位,因此“left:20px”会在元素的左侧位置添加 20 像素 | 播放 » |
sticky | 元素根据用户的滚动位置进行定位 粘性元素在 |
尝试 » |
initial | 将此属性设置为其默认值。 了解initial | |
inherit | 从其父元素继承此属性。 了解inherit |
更多示例
示例
如何相对于元素的正常位置定位元素
h2.pos_left {
position: relative;
left: -20px;
}
h2.pos_right {
position: relative;
left: 20px;
}
亲自尝试 »
示例
更多定位
#parent1 {
position: static;
border: 1px solid blue;
width: 300px;
height: 100px;
}
#child1 {
position: absolute;
border: 1px solid red;
top: 70px;
right: 15px;
}
#parent2 {
position: relative;
border: 1px solid blue;
width: 300px;
height: 100px;
}
#child2 {
position: absolute;
border: 1px solid red;
top: 70px;
right: 15px;
}
亲自尝试 »
相关页面
CSS 教程:CSS 定位
HTML DOM 参考:position 属性