div中有一个表不滚动

时间:2010-07-06 13:07:37

标签: html css overflow

我有一个包含在div中的表。 表格布局是固定的。 div有css属性“overflow:scroll”。 但是当我用小于表的宽度改变div时, 滚动条没有出现

1 个答案:

答案 0 :(得分:1)

为DIV指定某些widthheight,然后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>