<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>div+css居中</title>
<style type="text/css">
<!--
.login_window {
width: 960px;
height: 315px;
background: #D0DEE9;
margin: 0 auto;
margin-top: 5px;
}
.logo {
width: 960px;
height: 80px;
margin: 0 auto;
}
.login_right {
height: 260px;
width: 480px;
float: right;
margin-top: 30px;
background:#009933
}
.login_left {
height: 260px;
width: 480px;
float: left;
margin-top: 30px;
background:#CC0033
}
-->
</style>
</head>
<body>
<div class="logo" >
<div class="login_left">
此处左边
</div>
<div class="login_right">
此处右边
</div>
</div>
<div class="login_window" >
<div class="login_left">
此处左边
</div>
<div class="login_right">
此处右边
</div>
</div>
</body>
</html>
[img]http://dl.iteye.com/upload/attachment/0070/3116/76fdaa7a-f759-32e3-85a6-57a78632f2a8.gif[/img]
[b]源码在附件中[/b]