求大神帮助 如何 让我做的布局 缩小和放大 都是一个样子
<!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">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Example of Fluid Layout with Bootstrap version 2.0 from w3cschool.cc">
<meta name="author" content="">
<head>
<title>欢迎来到丰丰网</title>
<link rel="stylesheet" type="text/css" href="css.css" fcksavedurl="css.css">
<h1>丰丰布局:</h1>
<style type="text/css">
*{margin: 0px; padding: 0px;}
.left1{
position: fixed;
width: 200px;
height: 80px;
background: red;
float: left;
}
.right1{
position: relative;
width: 100px;
height: 35px;
background: green;
float: right;
margin-bottom: 0px;
}
.right2{
position: relative;
width: 460px;
height: 40px;
background: green;
float: right;
margin-top: 20px;
}
.left2{
position: relative;
width: 210px;
height: 210px;
align-content: left;
background: yellow;
margin-top: 90px;
}
.left_content{
width: 210px;
height: 105px;
background: blue;
float: left;
margin-left: 220px;
margin-top: -17px;
display: auto;
}
.left_content1{
width: 210px;
height: 35px;
background: blue;
float: left;
margin-left: 220px;
margin-top: -98px;
}
.left_content2{
width: 210px;
height: 20px;
background: blue;
float: left;
margin-left: 220px;
margin-top: -58px;
}
.right_ri{
width: 215px;
height: 170px;
background: red;
float: left;
margin-left:445px;
margin-top:-208px;
}
.right_ri1{
width: 440px;
height: 30px;
background: red;
float: left;
margin-left:220px;
margin-top:-30px;
}
.bonnt{
width: 660px;
height: 30px;
background: pink;
float: left;
margin-left:0px;
margin-top:0px;
}
.body{
margin:0px auto;
width: 1000px;
}
</style>
<!-- <script type="text/javascript" src="st.JS"> </script> -->
</head>
<body>
<!-- <form name="myform" method="post" onsubmit="return check()"/>
<table width="556" height="173">
<tr>
<td height="31" colspan="3"><font size="+1" face="新宋体" color="#00009">丰丰邮箱</font></td>
</tr>
<tr>
<id widdth="129" height="33" aligan="right">丰丰邮箱:</id>
<td width="175">
<input type="text" name="mainMail" value="请输入邮件地址" onFocus="clso()" onblur="doAction0()"/>
</td>
<td width="236" id="td0">邮箱名只能是字母和数字、下划线</td>
</tr>
<tr>
<td height="32" align="right">密码:</td>
<td><input type="password" name="pwd" onblur="doAction1()"/></td>
<td id="td1">密码至少是6位数字</td>
</tr>
<tr>
<td height="36" align="right">再次输入密码:</td>
<td><input type="password" name="pwd"/></td>
<td>密码至少是6位数字</td>
</tr>
<tr>
<td colspan="36" align="center"><input type="submit" value="提交表单"\></td>
</tr>
</table>
</form> -->
<div class="left1">logo01</div>
<div class="right1">语言02
<div class="right2">导航03</div>
</div>
<!-- <div class="body"> -->
<div class="body">
<div class="left2">1
<div class="left_content">21</div>
</div>
<div class="left_content1">22</div>
<div class="left_content2">23</div>
<div class="right_ri">3</div>
<div class="right_ri1">4</div>
<div class="bonnt">5</div>
</div>
<!-- </div> -->
</body>
<!-- <input type="button" name="点击" onclick="function_name()"> -->
</html>