<!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=utf-8" />
<title>�ޱ����ĵ�</title>
<style type="text/css">
.box1 {
width:69%;
height:100px;
background:#CC99FF;
float:left;
margin-right:2%;
}
.box2 {
width:29%;
height:100px;
background:pink;
float:left;
}
.box3 {
background:blue;
width:100%;
height:100px;
}
</style>
</head>
<body>
<div class="box3">
<div class="box1"></div>
<div class="box2"></div>
</div>
</body>
</html>