Вот так выглядит мой стол.Когда я пытаюсь задать для таблицы высоту 100%, но она не работает.
Я хочу, чтобы TD, содержащий «xxx», имел высоту 100%, т.е. высоту родительского TD.*
Установить свойство CSS height:
style="height:100%;"
Хочешь что-нибудь подобное?
<table> <tr align="left" style="height: 1000px"> <td valign="top"> <table style="height: 100%" border="1"> <tr> <td> <span title="Toggle between full screen and frames." id="showHideText" onclick="showHideFrames();" class="buttonLabel" style="cursor: pointer; font-size: 65%; font-weight: bold;"> Hide Frames </span> </td> </tr> <tr> <td valign="bottom" style="height: 1000px"> xxx </td> </tr> </table> </td> </tr> </table>