<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>多列布局使用float和margin的改进版</title>
<style type="text/css">
html,body{
height: 100%;
width:100%;
}
.left{
float: left;
position: relative;
width: 100px;
background-color: aqua;
}
.right-fix{
float: right;
width: 100%;
margin-left: -100px;
background-color: red;
}
.right{
margin-left: 120px;
background-color: blue;
}
</style>
</head>
<body>
<div>
<div class="left">
<p>我在左边</p>
</div>
<div class="right-fix">
<div class="right">
<p>我在右边</p>
</div>
</div>
</div>
</body>
</html>