2010-04-03 161 views
0

在下表中:如何自動調整表格的高度和寬度。HTML中的表格數據顯示

在數據或數據的小塊的大塊的情況下,即,如果數據是更應該在一個時髦方式

<table id="mytable"> 
    <tr> 
    <td>more data.............................................................................</td> 
    <td>a</td> 
    </tr> 
</table> 

在沒有顯示所有的數據否則本數據應該被封裝凋。

謝謝。

回答

0

使用css overflow屬性。

1

使用 'nowrap' 選項在標籤或樣式:

<td nowrap>...</td> 

---或---

<style> 
    .cell { 
    white-space:nowrap; 
    } 
</style> 

<td class="cell">...</td> 
0

使用百分比寬度和高度爲你<td>標籤,他們將無論其內部的內容如何彼此調整。