您的当前位置:首页正文

CSS中absoulte属性有哪些

2020-11-27 来源:爱够旅游网

特性:

absoulte 与 float 具有相同的特性:包裹性,与破坏性
absoulte 与 float 可以交替使用
不受 relative 限制的 absoulte 定位,行为表现上可以不使用 left/right/top/button/auto 等属性

行为表现

脱离文档流
去浮动( float 与 absoulte 元素不能同时出现)
位置跟随(还在原来的位置)
问题: IE7使用 absoulte 的元素永远是 inline-block 元素
解决: 外层套一层无设置属性的标签

可以配合margin 精确定位

支持负值定位
兼容性强 IE6
自适应强,维护性好,具有健壮性

动画尽量作用与绝对定位元素上,多个 absoulte 元素会重叠,后者居上

z-index 无依赖

如只有一个 absoulte 元素,不需要设置
如两个 absoulte 元素,控制DOM流的顺序,也可不需要
多个定位交错, z-index: 1 控制
非弹框类的 absoulte 元素, z-index <= 2 若冗余,需优化

left/right/top/bottom与width/height可相互替代


left:0;right:0; 等于 width:100%;
top:0;bottom:0; 等于 height:100%;
以上IE7+支持
具有相互合作性:left:0;right:0;width:50%;margin:auto;可居中

absoulte整体布局

<header></header>
<article>
 <aside></aside>
 <main></main>
</article>
<footer></footer>


1 header,footer{ positon:absoulte; left:0; right:0; }
2 header{ height: 50px; top: 0; }
3 footer{ height: 20px; bottom: 0; }
4 aside{ position: absoulte width: 200px; top: 0; bottom: 0; left:0; }
5 main{ position: absoulte; top: 50px; bottom: 50px; right: 0; left: 200px; overflow: auto;}
显示全文