укажите width
, height
в DIV, а затем overflow:auto;
overflow:auto;
width:500px;
height:400px;
проверьте этот код
<style type="text/css">
.pqr{
overflow:auto;
width:500px;
height:400px;
}
</style>
<div class="pqr">
<table width="600px" border="1">
<tr>
<td>
Test
</td>
</tr>
</table>
</div>