标题图
学习CSS相关知识,定位是其中的重点,也是难点之一,如果不了解css定位有时候都不知道怎么用,下面整理了一下关于定位属性的具体理解和应用方案。
基本语法:
position:static | absolute | fixed | relative
语法介绍:
代码:
div { position:relative; top:-4px }
基本特殊:定位元素
基本语法:bottom:auto | length
代码:
div { position:relative; bottom:6px; }
语法:z-index:auto | number 取值:auto:默认值,number:无单位的整数值,可负数。
代码:
div { position:absolute; z-index:5; width:6px; }
基本语法:left:auto | length
代码:
div { position:relative; top:-3px; left:6px; }
基本语法:top:auto | length
代码:
div { position:relative; top:-3px; left:5px;}
基本语法:right:auto | length
代码:
div { position:relative; top:-3px; right:6px}
relative生成相对定位的元素,相对于其它位置进行定位。
代码:
<style type="text/css">
#box1 {
margin: 10px;
width: 100px;
height: 100px;
background-color: blue;
}
#box2 {
margin: 10px;
width: 100px;
height:100px;
background-color: red;
/*position: relative;
left: 100px;
top: 100px;*/
}
</style>
<div id="box1"></div>
<div id="box2"></div>
绝对定位相对于它的参照物移动位置,如果没有,默认为body为参照物。
小礼物走一走 or 点赞