Blogger Information
Blog 16
fans 0
comment 0
visits 10756
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
定位布局-2018年8月17日
兔子的博客
Original
518 people have browsed it

定位布局

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
*{margin: 0;padding: 0;}/*块元素自动居中*/
.main{width: 800px;margin: 0 auto}
.box1{width: 50px;height: 20px;margin: 20px 30px;padding: 20px;background: red}/*外边距:上下20px 左右30px 内填充上下左右各20px*/
	.box2{text-align: center;}/*行内元素居中 多为文本等*/
	.box3{text-align: center;}/*不定宽块元素转行内元素再居中*/
	p{display: inline;}
	.a{width: 100px;height: 100px;background: green;}
	.box4{position: relative;width: 800px;height: 300px;}
	.a1{position:absolute;top: 0;left: 100px;}/*相对于父元素定位*/
	.a2{position:absolute;top: 100px;left: 0px;}
	.a3{position:absolute;top: 100px;left: 200px;}
	.a4{position:absolute;top: 200px;left: 100px;}
	</style>
</head>
<body>
	<div class="main">
		<div class="box1"></div>
		<div class="box2">
			<span>1111</span>
			<a href="javascript:;">2222</a>
		</div>
		<div class="box3">
			<p>2222</p>
			
		</div>
<div class="box4">
	<div class="a a1"></div>
	<div class="a a2"></div>
	<div class="a a3"></div>
	<div class="a a4"></div>
</div>
	</div>

</body>
</html>

运行实例 »

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

绝对定位中需要注意相对于谁定位,需要在父元素中加相对定位,否则是相对于整个文档定位

Correction status:qualified

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