Layout-3相关代码:3列布局

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Layout Demo</title>
<style type="text/css">
#left {
	background-color: #F00;
	height: 300px;
	width: 300px;
	float: left;
}
#right {
	background-color: #FF0;
	height: 300px;
	width: 300px;
	top: 0;
	right: 0;
	position: absolute;
}
#main {
	background-color: #999;
	height: 300px;
}
#outbox {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	min-width:650px;
}
#outbox2{	
	padding-right: 300px;
	float:left;
}
.photo {
	background-color: #00F;
	float: left;
	height: 50px;
	width: 50px;
}
</style>
</head>
<body>
<div id="outbox">
  <div id="outbox2">
    <div id="left"></div>
    <div class="photo"></div>
    <div class="photo"></div>
    <div class="photo"></div>
    <div class="photo"></div>
    <div class="photo"></div>
  </div>
  <div id="right"></div>
  <div id="main"> </div>
</div>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/exesoft/p/10639592.html
今日推荐