我正在試圖製作一個僅佔用垂直空間所需空間的表格。有沒有辦法使用CSS做到這一點,而沒有將最後一個單元格設置爲100%的高度?除最後一行外,如何將表格行高設置爲最小值?
這個問題和this question只是在另一個方向非常相似。
目前看起來是這樣的:
---------------------------------
| |
|thing 1 |
| |
---------------------------------
| |
|thing 2 |
| |
---------------------------------
| |
|thing 3 |
| |
--------bottom of table----------
如何得到它看起來像
---------------------------------
|thing 1 |
---------------------------------
|thing 2 |
---------------------------------
|thing 3 |
| |
| |
| |
| |
| |
| |
--------bottom of table----------
,或者像:
---------------------------------
|thing 1 |
---------------------------------
|thing 2 |
---------------------------------
|thing 3 |
--------bottom of table----------
-----bottom of containing div------
嘗試':最後child'僞選擇像'TR:最後child' – Litestone
我們將能夠看到您的實際代碼/演示可複製您有間距的問題? – indubitablee