您的位置:首页 > Web前端 > CSS

CSS中position属性详解以及定位的说明——实验3

2012-02-27 22:36 806 查看
原文:http://blog.csdn.net/huang_xw/article/details/7300201

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>实验3</title>
<!--绝对定位: 有top与left时定位的参照体是body。-->
<style type="text/css">
body {
margin:20px;
padding:0px;
}
.c1 {
width:700px;
height:100px;
background-color:red;
}
.c2 {
width:700px;
height:100px;
background-color:green;
}
.c3 {
background-color:orange;
position:absolute;
top:50px;
left:50px;
}
.c4 {
width:700px;
height:100px;
background-color:blue;
}
</style>
</head><body>
<div class="c1">第一个块区域</div>
<div class="c2">第二个块区域</div>
<div class="c3">第三个块区域</div>
<div class="c4">第四个块区域</div>
</body>
</html>
效果如下图:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css class xhtml html c