1、拖到滚动条时只拖动中间的文字
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
#d1 {
width: 100px;
height: 500px;
background: #4cff00;
float: left;
position:fixed;
}
#d2 {
width: 500px;
background: #e9cf40;
float: left;
margin-left: 100px;
}
</style>
</head>
<body>
<div>
<div id="d1">
左边导航
</div>
<div id="d2">
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
<p>中间正文</p>
</div>
</div>
</body>
</html>