012對聯廣告

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>對聯廣告</title>
	<style>
		#main{
			width: 1000px;
			height: 600px;
			margin: 0 auto;
			background: #ccc;
		}
		#box1{
			width: 45px;
			height: 80px;
			background: red;
			position: absolute;
			top:120px;
			left:5px;
		}
		#box2{
			width: 45px;
			height: 80px;
			background: red;
			position: absolute;
			top: 120px;
			right: 5px;
		}
	</style>
</head>
<body>
	
	<div id="main"></div>

	<div id="box1">box1</div>
	<div id="box2">box2</div>

	
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章