就是说让内页里面有些内容固定了高度或者宽度 实现滚动条拖动显示。
<html>
<head>
<title> Scroll </title>
<style>
body { overflow: hidden; }
</style>
</head>
<body>
<div style=”overflow:scroll; height:100px; width: 100px;”>
<table >
<tr>
<td>内容</td>
<td></td>
<td>内容</td>
</tr>
</table>
</div>
</body>
</html>
<div style=”overflow:scroll; height:100px; width: 100px;”>根据需要也可以修改参数,比如
可设为<div style=”overflow:auto; height:100px; width: 100px;”>等