我正在發送多封電子郵件。部分共享佈局需要左側爲白色和黃色設計。 table1沒有固定的高度,因爲根據發送的電子郵件,會有不同的內容。我怎樣才能讓table2完全填充高度?我正在使用第三方軟件來生成HTML,所以「幻想」內聯CSS是一個不行。內部100%高度
<table name="table1">
<tr>
<td>
<table height="100%" name="table2">
<tr>
<td height="100%" width="10px" bgcolor="white"></td>
<td height="100%" width="30px" bgcolor="yellow"></td>
</tr>
</table>
</td>
<td>
text that can so on and on and on...</br>
more text</br>
even more.</br>
</td>
</tr>
</table>
不能使用內嵌CSS? – Grumpy
沒有。這是由第三方軟件生成的html,它不允許您手動添加html/css。它只是讓你添加「表」對象等 – edwardmlyte
內您可以放置內聯CSS或被過濾? – Grumpy