码迷,mamicode.com
首页 > Web开发 > 详细

CSS的定位

时间:2017-07-09 13:53:44      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:color   rod   固定   静态   htm   height   css   head   tle   

CSS position 属性

position的属性值有4个,分别是:

1.static(静态定位)

2.relative(相对定位)

3.absolute(绝对定位)

4.fixed(固定定位)

最常见的就是relative和absolute结合起来一起用,将所在的父级设置为relative,子级设置为absolute,将所在的父级当做坐标的0,0点;如:

<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.box{
width: 400px;
height: 400px;
background-color: darkgoldenrod;
position: relative;
}
.box1{
width: 100px;
height: 100px;
background-color: darkblue;
position: absolute;
left: 100px;
top: 100px;
}
</style>
</head>
<body>
<div class="box">
<div class="box1"></div>
</div>
</body>
</html>

 

CSS的定位

标签:color   rod   固定   静态   htm   height   css   head   tle   

原文地址:http://www.cnblogs.com/hjl-x/p/7141210.html

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