博客列表 >2018/03/26(绝对定位)

2018/03/26(绝对定位)

梁凯达的博客
梁凯达的博客原创
2018年04月01日 15:57:47731浏览

重点:

          绝对定位是令元素脱离了文档流并且使行内元素支持宽高的一种定位方式。

定位写法: 

          position: absolute;

注意:

         脱离文档流结构之后,整个定位中的块会出现塌陷,同时脱离了文档流,且支持宽高的设定。

案例:

QQ截图20180401155523.png

代码部分:

实例

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta http-equiv="X-UA-Compatible" content="ie=edge" />
	<title>Document</title>
	<style>
		.box{
			height: 700px;
			width: 700px;
			background: yellow;
			position: absolute;
			left: 0;
			top: 0;			
		}
		.box1{
			height: 200px;
			width: 200px;
			background: black;
			position: absolute;
			top:200px;
		}
		.box2{
			height: 200px;
			width: 200px;
			background: blueviolet;
			position: absolute;
			left: 200px;
			top: 400px;
		}
		.box3{
			height: 200px;
			width: 200px;
			background: brown;
			position: absolute;
			left: 400px;
			top: 200px;
			
		}
		.box4{
			height: 200px;
			width: 200px;
			background: lightcoral;
			position: absolute;
			left: 200px;
		}
	</style>
</head>
<body>
	 <div class="box">
	 	<div class="box1"></div>
	 	<div class="box2"></div>
	 	<div class="box3"></div>
	 	<div class="box4"></div>
	 	<div class="box5"></div>
	 </div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议