[/quote]
Увы не помогло... В IE вроде работает, а в Файрфоксе не пашет - вообще третью строку не показывает...
А если добавить дивы с style="width:100%;height:100%;overflow-y:auto;" и записать в каждую ячейку много текста (чтоб скролл появился), то снова таки в IE все пашет, а Файрфокс віпендривается - лепит без скролов (хотя третью ячейку уже показывает).
Вот измененный код:
Код:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
* *<title>test</title>
</head>
<body>
* *<table border='0' cellspacing='0' cellpadding='0' style='width: 100%; height: 100%'>
* * * *<tr style="height: 200px; background-color: Yellow;">
* * * * * *<td>
* * * * * * * *<div style="width: 100%; height: 100%; overflow-y: auto;">
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * * * *200px
* * * * * * * *</div>
* * * * * *</td>
* * * *</tr>
* * * *<tr style="height: 60%; background-color: Blue;">
* * * * * *<td>
* * * * * * * *<div style="width: 100%; height: 100%; overflow-y: auto;">
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * * * *60%
* * * * * * * *</div>
* * * * * *</td>
* * * *</tr>
* * * *<tr style="height: 40%; background-color: Red;">
* * * * * *<td>
* * * * * * * *<div style="width: 100%; height: 100%; overflow-y: auto;">
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * * * *40%
* * * * * * * *</div>
* * * * * *</td>
* * * *</tr>
* *</table>
</body>
</html>