首页 > 代码库 > CSS的相对定位
CSS的相对定位
CSS的相对定位:
一.基本概念:
顾名思义,此种定位是相对某一个对象进行的偏移,相对定位并不能使对象脱离文档流,尽管它的位置可能产生偏移,但是对象初始位置仍然会被保留。
如果要真正掌握此种定位方式,搞清楚需相对于哪个对象进行偏移是关键点。
二.如何将一个元素设置为相对定位:
当一个对象的position属性值被设置为relative的时候就会发生相对定位:
position:relative |
三.定位参考对象:
可以使用top属性和left属性设置相对定位对象的偏移量。
相对定位的偏移参考对象是此对象本身。
代码实例:
首先看一个没有使用定位的代码实例:
<!DOCTYPE html>
<html>
<head> <meta charset=" utf-8">
<title>CSS相对定位</title>
<style type="text/css">
.father{ width:400px; height:400px; margin:50px; }
.first{ width:100px; height:100px; background-color:red }
.second{ width:100px; height:100px; background-color:blue }
</style>
</head>
<body>
<div class="father">
<div class="first">
</div>
<div class="second">
</div>
</div>
</body>
</html>
<html>
<head> <meta charset=" utf-8">
<title>CSS相对定位</title>
<style type="text/css">
.father{ width:400px; height:400px; margin:50px; }
.first{ width:100px; height:100px; background-color:red }
.second{ width:100px; height:100px; background-color:blue }
</style>
</head>
<body>
<div class="father">
<div class="first">
</div>
<div class="second">
</div>
</div>
</body>
</html>
在以上代码中,所有的对象都没有采用相对定位,这里无须多介绍了。
再来看一段采用相对定位的代码:
<!DOCTYPE html>
<html>
<head> <meta charset=" utf-8">
<title>CSS相对定位</title>
<style type="text/css">
.father{ width:400px; height:400px; margin:50px; }
.first{ width:100px; height:100px;
background-color:red; position:relative; left:20px; top:30px; }
.second{ width:100px; height:100px; background-color:blue }
</style>
</head>
<body>
<div class="father">
<div class="first">
</div>
<div class="second">
</div>
</div>
</body>
</html>
<html>
<head> <meta charset=" utf-8">
<title>CSS相对定位</title>
<style type="text/css">
.father{ width:400px; height:400px; margin:50px; }
.first{ width:100px; height:100px;
background-color:red; position:relative; left:20px; top:30px; }
.second{ width:100px; height:100px; background-color:blue }
</style>
</head>
<body>
<div class="father">
<div class="first">
</div>
<div class="second">
</div>
</div>
</body>
</html>
在以上代码中,first元素采用了相对定位,并产生偏移,偏移是以对象没有产生偏移前的位置为参考的。同时也可以看出,first元素的偏移前的位置依然会被保留,它周边的元素不能够占据。
特别说明:定位元素经常与z-index属性一起使用,具体我们可以参阅CSS的z-index属性用法详解
CSS的相对定位
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。