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

相对定位

时间:2017-07-14 14:56:08      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:距离   class   pos   bottom   top   位置   lan   原来   type   

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>相对定位</title>
<style>
div{
width:100px;
height:100px;
}
.div1{
background:red;
}
.div2{
background:yellow;
position:relative;
/*position:relative;相对于原来的位置进行定位,不脱离文档流,原来的位置还在。只写这行,不定left、top、right或者bottom的话没效果*/
/*文档流就是从上到下,从左到右*/
left:200px;/*距离原来的位置200px,不是向左移动200px*/
}
.div3{
background:blue;
}
</style>
</head>
<body>
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
</body>
</html>

相对定位

标签:距离   class   pos   bottom   top   位置   lan   原来   type   

原文地址:http://www.cnblogs.com/benbenma/p/7169569.html

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