<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>test</title>
<style type="text/css">
html,
body {
margin: 0;
padding: 0;
}
.wrapper {
overflow: hidden;
}
.left {
float: left;
width: 300px;
background: pink;
}
.right {
float: right;
width: 300px;
background: pink;
}
.center {
margin:0 300px;
background: gray;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="left">zuo</div>
<div class="center">左右两列固定,中间自适应</div>
<div class="right">you</div>
</div>
<script type="text/javascript">
</script>
</body>
</html>