Blogger Information
Blog 15
fans 0
comment 0
visits 10431
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
绝对定位实现遮罩层-2019年1月16日
超超的博客
Original
764 people have browsed it
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>绝对定位实现遮罩层</title>
<style>
	body{
		background-image:url(https://img.php.cn/upload/article/000/000/003/5b49b0e610f26951.jpg);
		background-repeat:no-repeat;
		background-size:cover;
	}
	.shade{
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background-color:black;
		opacity:0.5;//设置背景透明度		
	}
	.login{
		width:200px;
		height:300px;
		position:absolute;
		top:50%;
		left:50%;
		margin-left:-100px;
		margin-top:-150px;
		background-color:#f00;
	}
</style>
</head>
<body>
	<div class="shade"></div>
	<div class="login"></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