Blogger Information
Blog 1
fans 0
comment 0
visits 682
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0904定位与相对定位
不是一般的人的博客
Original
712 people have browsed it

定位与相对定位

演示地址: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;
}

运行实例 »

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

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post