博客列表 >0904定位与相对定位

0904定位与相对定位

不是一般的人的博客
不是一般的人的博客原创
2019年09月07日 16:29:24711浏览

定位与相对定位

演示地址:http://demo.0517w.com.cn/0904/demo4.html

效果图 360截图20190907162654503.jpg


html 代码

实例

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>定位与相对定位</title>
</head>

<body>
<div class="parent">
	<div class="box box1">北</div>
	<div class="box box2">西</div>
	<div class="box box3">中</div>
	<div class="box box4">东</div>
	<div class="box box5">南</div>
</div>
</body>
</html>

运行实例 »

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

css代码

实例

@charset "utf-8";
/* CSS Document */

.box{
	width: 150px;
	height: 150px;
	position: relative;
	text-align: center;
	line-height: 150px;
	font-size: 24px;
	font-weight: bold
}
.box1{
	background-color: lightblue;
	left: 150px;
}

.box2{
	background-color: lightgray
}
.box3{
	background-color: lightgreen;
	left: 150px;
	top: -150px;
}
.box4{
	background-color: lightcoral;
	left: 300px;
	top: -300px;
}
.box5{
	background-color: lightseagreen;
	left: 150px;
	top: -300px;
}

运行实例 »

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

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