定位案例

1

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
	* { 
		margin: 0;
		padding: 0;
	}
	ul {
		list-style: none;
	}
	.father {
		width: 520px;
		height: 280px;
		background-color: purple;
		margin: 50px auto;
		position: relative;   /*子绝父相*/
	}
	.arrow-l,
	.arrow-r {
		position: absolute;   /*绝对定位*/
		width: 24px;
		height: 36px;
		display: block;  /*转换*/
		top: 0;
		top: 50%;   /*这个百分号是按照父级高度来进行计算*/
		margin-top: -18px;    /*往上走是负值,自己高度的一半*/  
	}
	.arrow-l {
		left: 0;
		/*top: 0;*/
	}
	.arrow-r {
		 right: 0;
		 /*top: 0;*/
	}
	.circle {
		width: 65px;
		height: 13px;
		background-color: rgba(255, 255, 255, 0.3);  /*盒子背景半透明*/
		position: absolute;
		bottom: 15px;  /*因为底对齐所以是正值*/
		left: 50%;
		margin-left: -32; 
		border-radius: 6px;
	}
	.circle li {
		width: 9px;
		height: 9px;
		background-color: #b7b7b7;
		float: left;
		margin: 2px;
		border-radius: 50%;   /*圆角的做法*/
	}
	.circle .current {   /*注意权重问题  优先级  0020*/
		background-color: pink;
	}
	</style>
</head>
<body>
	<div class="father">
		<img src="one.jpg" alt="">
		<a href="#" class="arrow-l"><img src="jian.jpg" alt=""></a>
		<a href="#" class="arrow-r"><img src="tou.png" alt=""></a>
		<ul class="circle">  <!-- 小圆点 -->
			<li class="current"></li>   <!-- current 翻译就是 当前的意思 -->
			<li></li>
			<li></li>
			<li></li>
			<li></li>
		</ul>
		
	</div>
</body>
</html>

2

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		* {
			margin: 0;
			padding: 0;
		}
		.top {
			height: 44px;
			background: url(top.png) no-repeat top center;
			width: 100%;   /*固定定位的盒子一定要写宽和高!!!  除非有内容撑开不用写*/
			position: fixed;  /*固定定位*/ 
			top: 0;
			left: 0; 
		}
		.ad-r,
		.ad-l {
			position: fixed;
			top: 100px;
		}
		.ad-r {
			right: 0;
		}
		.ad-l {
			left: 0;
		}
		.box {
			width: 1002px;
			margin: 44px auto;   /*隔开 防止logo部分被 固定定位的导航栏遮挡*/ 
		}
	</style>
</head>
<body>
	<div class="top"></div>
	<div class="ad-l"><img src="ad-l.png" alt=""></div>
	<div class="ad-r"><img src="ad-r.png" alt=""></div>
	<div class="box">
		<img src="box.jpg" alt="" height="1760" width="1002">
	</div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值