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

来源:互联网 发布:mac版微信开发工具 编辑:程序博客网 时间:2024/06/05 00:09

原文: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>实验4</title><!--绝对定位: 若有父级元素有relative,就以该父级元素为定位参照体。--><style type="text/css">body {margin:20px;padding:0;}.c1 {width:700px;height:100px;background-color:red;}.c2 {margin:10px;width:700px;height:100px;background-color:green;position:relative;}.c3 {background-color:orange;position:absolute;top:30px;left:30px;}.c4 {width:700px;height:100px;background-color:blue;}</style></head><body><div class="c1">第一个块区域</div><div class="c2">第二个块区域<div class="c3">第三个块区域</div></div><div class="c4">第四个块区域</div></body></html>
效果如下图:


原创粉丝点击