常见的定位属性取值
position: absolute; // 绝对定位
position: fixed; // 固定定位
position: relative; // 相对定位
position: static; // 不定位
小结
- absolute,fixed,relative 都是定位,left , right, top , bottom, z-index 可以控制定位盒子位置和层级。
- position: static; 设置盒子不定位,相当于变回普通盒子。
- 普通盒子或者设置了不定位的盒子, left , right, top , bottom, z-index 这些定位相关的属性无效。
获取元素宽高
还有 .width() .innerWidth() .outerWidth()