Blogger Information
Blog 15
fans 0
comment 0
visits 10320
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
固定广告的制作-2019年1月16日
超超的博客
Original
598 people have browsed it
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>固定广告</title>
<style>
	.advertise-left {
		width:200px; 
		height:300px;
		background:#333; 
		position:fixed; 
		left:0;
		top:200px;
		}	
	
	.advertise-right {
		width:200px; 
		height:300px;
		background:#333; 
		position:fixed; 
		right:0;
		top:200px;
		}	
		
	.advertise-left p,.advertise-right p { 
		font-size:14px; 
		color:#fff;
		text-align:center;
	}
	.content{ width:1200px; height:50%; background:#f00; margin:0 auto;}
	.content1{ width:1200px; height:50%; background:green; margin:0 auto;}
</style>
</head>
<body style="height:2000px">
<div class="advertise-left">
<p>
跟着朱老师学习真带劲!!!
</p>
</div>
<div class="content"></div>
<div class="content1"></div>
<div class="advertise-right">
<p>
跟着朱老师学习真带劲!!!
</p>
</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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!