解决方法
快点一个,来看看吧.你应该至少尝试过自己,但我做得不多,所以这就是为什么我做了些什么.
HTML:
<div id="left">Side menu</div> <div id="right">Scroll <br />Scroll <br />Scroll </div>
CSS:
html,body { height: 100%; margin: 0; font-size: 20px; } #left { width: 20%; height: 100%; position: fixed; outline: 1px solid; background: red; } #right { width: 80%; height: auto; outline: 1px solid; position: absolute; right: 0; background: blue; }