Blogger Information
Blog 87
fans 0
comment 0
visits 59544
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第九节课作业:4.浮动元素也支持相对定位
黄忠倚的博客
Original
492 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>4.浮动元素也支持相对定位</title>
	<style type="text/css">
		.box1 {
			width: 200px;
			height: 200px;
			background-color: red;
			float: left;

			}
		.box2 {
			width: 200px;
			height: 200px;
			background-color: coral;
			float: left;
			position: relative;
			top:100px;
			left: -100px;
			}
		.box3 {
			width: 200px;
			height: 200px;
			background-color: brown;
			float: left;
			position: relative;
			left: -200px;
			top: 200px;
			}

	</style>
</head>
<body>
	<div class="box1"></div>
	<div class="box2"></div>
	<div class="box3"></div>
</body>
</html>

运行实例 »

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


Correction status:Uncorrected

Teacher's comments:
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