码迷,mamicode.com
首页 > 其他好文 > 详细

position absolute fixed relative static inherit

时间:2015-01-27 19:50:38      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

 1 object.style.position="absolute" 
 2 
 3 absolute 
 4 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
 5 
 6 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
 7  
 8 fixed 
 9 生成绝对定位的元素,相对于浏览器窗口进行定位。
10 
11 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
12  
13 relative 
14 生成相对定位的元素,相对于其正常位置进行定位。
15 
16 因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。
17  
18 static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 
19 inherit 规定应该从父元素继承 position 属性的值。 

 

position absolute fixed relative static inherit

标签:

原文地址:http://www.cnblogs.com/JJ.Net/p/4253579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!