上面固定,左侧固定,右侧内容可滚动

   
   
   
   
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>上面固定,左侧固定,右侧内容可滚动</title>
<style type="text/css">
*{margin:0; padding:0;}
html,body{overflow:hidden;width:100%; height:100%;}
.top{width:100%; height:30px; background:#00f;}
.con{position: relative; width:100%; height:100%;}
.left,.right{position: absolute;top:0; bottom:0;_height:100%;}
.left{width:222px;left:0;background:#eee;}
.right{left:0;right:0;margin-left:222px; background:#999;_width:100%}
 
 
/* 这个相当于iframe自己滚动条 */
.test{width:40px;height:40px; overflow:auto;}
</style>
</head>
<body>
<div class="top">头部</div>
<div class="con">
<div class="left">左侧</div>
<div class="right"><div class="test">右侧喜羊羊5号胶篮球18000积分我要兑换喜羊羊全闪蛙式车(蓝色)108000积分我要兑换喜羊羊全闪蛙式车(粉色)右侧喜羊羊5号胶篮球18000积分我要兑换喜羊羊全闪蛙式车(蓝色)108000积分我要兑换喜羊羊全闪蛙式车(粉色)右侧喜羊羊5号胶篮球18000积分我要兑换喜羊羊全闪蛙式车(蓝色)108000积分我要兑换喜羊羊全闪蛙式车(粉色)</div>
</div>
</div>
</body>
</html>

你可能感兴趣的:(上面固定,左侧固定,右侧内容可滚动)