代码如下:   
  <table   width="100%"   border="0"   cellspacing="0"   cellpadding="0">   
      <tr>     
          <td><p> </p>   
              <p> </p></td>   
      </tr>   
      <tr>   
          <td><p> </p>   
              <p> </p>   
              <p> </p>   
              <p> </p></td>   
      </tr>   
  </table>   
		
  想限制第一行的表格高度永远为某个值(最好为某个百分比值),如果超过则出现滚动条,但表格单元的高度不增加,请问怎么做呀. 
以下为答案:
<table   width="100%"   border="1"   cellspacing="0"   cellpadding="0">   
      <tr>     
          <td><div   style="height:   20;   overflow:   auto"><p> 1</p>   
              <p> 1</p></div></td>   
      </tr>   
      <tr>   
          <td><p> 1</p>   
              <p> 1</p>   
              <p> 1</p>   
              <p> 1</p></td>   
      </tr>   
  </table>
补充知识:
overflow 的 3个参数
auto 自动显示滚动条
scroll   显示所有滚动条
hidden  隐藏滚动条
	[此贴子已经被作者于2008-1-10 18:51:02编辑过]